|
@@ -7,6 +7,7 @@ import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.*;
|
|
|
|
|
|
import javax.validation.constraints.Pattern;
|
|
|
+import javax.validation.constraints.Positive;
|
|
|
import javax.validation.constraints.PositiveOrZero;
|
|
|
import javax.validation.constraints.Size;
|
|
|
import java.io.Serializable;
|
|
@@ -484,17 +485,23 @@ public class TbVmsDsplSchDto implements Serializable {
|
|
|
@PositiveOrZero
|
|
|
private Integer vmsSchFormType;
|
|
|
|
|
|
- @ApiModelProperty("PHASE, Nullable = N, NUMBER(2)") // N NUMBER(2)
|
|
|
+ @ApiModelProperty("PHASE")
|
|
|
@JsonProperty("phase")
|
|
|
@PositiveOrZero
|
|
|
private Integer phase;
|
|
|
|
|
|
+ @ApiModelProperty("VMS FORM ID")
|
|
|
+ @JsonProperty("vms_form_id")
|
|
|
+ @Positive
|
|
|
+ private Integer vmsFormId;
|
|
|
+
|
|
|
@Builder
|
|
|
- public TbVmsDsplSchDelReq(Long vms_ctlr_nmbr, String vms_sch_type, Integer vms_sch_form_type, Integer phase) {
|
|
|
+ public TbVmsDsplSchDelReq(Long vms_ctlr_nmbr, String vms_sch_type, Integer vms_sch_form_type, Integer phase, Integer vms_form_id) {
|
|
|
this.vmsCtlrNmbr = vms_ctlr_nmbr;
|
|
|
this.vmsSchType = vms_sch_type;
|
|
|
this.vmsSchFormType = vms_sch_form_type;
|
|
|
this.phase = phase;
|
|
|
+ this.vmsFormId = vms_form_id;
|
|
|
}
|
|
|
}
|
|
|
|