|
@@ -31,10 +31,6 @@ public class TbFcltSubjPartInDto implements Serializable {
|
|
|
@JsonProperty("in_dt")
|
|
|
private String inDt;
|
|
|
|
|
|
- @ApiModelProperty("단위(EA, ...)") // Y VARCHAR2(10)
|
|
|
- @JsonProperty("in_unit")
|
|
|
- private String inUnit;
|
|
|
-
|
|
|
@ApiModelProperty("단위 수량당 단가") // N NUMBER(5)
|
|
|
@JsonProperty("per_amt")
|
|
|
private Integer perAmt;
|
|
@@ -78,11 +74,6 @@ public class TbFcltSubjPartInDto implements Serializable {
|
|
|
@Size(min=1, max=8)
|
|
|
private String inDt;
|
|
|
|
|
|
- @ApiModelProperty("단위(EA, ...), Nullable = Y, VARCHAR2(10)") // Y VARCHAR2(10)
|
|
|
- @JsonProperty("in_unit")
|
|
|
- @Size(max=10)
|
|
|
- private String inUnit;
|
|
|
-
|
|
|
@ApiModelProperty("단위 수량당 단가, Nullable = N, NUMBER(5)") // N NUMBER(5)
|
|
|
@JsonProperty("per_amt")
|
|
|
@PositiveOrZero
|
|
@@ -109,11 +100,10 @@ public class TbFcltSubjPartInDto implements Serializable {
|
|
|
private Integer validCnt;
|
|
|
|
|
|
@Builder
|
|
|
- public TbFcltSubjPartInUpdReq(Long in_seq, Long part_nmbr, String in_dt, String in_unit, Integer per_amt, Integer in_cnt, String cmpy_id, String user_id, Integer valid_cnt) {
|
|
|
+ public TbFcltSubjPartInUpdReq(Long in_seq, Long part_nmbr, String in_dt, Integer per_amt, Integer in_cnt, String cmpy_id, String user_id, Integer valid_cnt) {
|
|
|
this.inSeq = in_seq;
|
|
|
this.partNmbr = part_nmbr;
|
|
|
this.inDt = in_dt;
|
|
|
- this.inUnit = in_unit;
|
|
|
this.perAmt = per_amt;
|
|
|
this.inCnt = in_cnt;
|
|
|
this.cmpyId = cmpy_id;
|
|
@@ -126,7 +116,6 @@ public class TbFcltSubjPartInDto implements Serializable {
|
|
|
.inSeq(this.inSeq)
|
|
|
.partNmbr(this.partNmbr)
|
|
|
.inDt(this.inDt)
|
|
|
- .inUnit(this.inUnit)
|
|
|
.perAmt(this.perAmt)
|
|
|
.inCnt(this.inCnt)
|
|
|
.cmpyId(this.cmpyId)
|