shjung před 2 roky
rodič
revize
3f506b81fa

+ 1 - 12
src/main/java/com/its/op/dto/its/facility/TbFcltSubjPartInDto.java

@@ -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)

+ 0 - 5
src/main/java/com/its/op/entity/its/facility/TbFcltSubjPartIn.java

@@ -37,10 +37,6 @@ public class TbFcltSubjPartIn implements Serializable {
     @Column(name = "IN_DT", nullable = false, length = 8)
     private String inDt;
 
-    @ApiModelProperty("단위(EA, ...)")  // Y VARCHAR2(10)
-    @Column(name = "IN_UNIT", length = 10)
-    private String inUnit;
-
     @ApiModelProperty("단위 수량당 단가")  // N NUMBER(5)
     @Column(name = "PER_AMT", nullable = false, columnDefinition = "NUMBER", length = 5)
     private Integer perAmt;
@@ -66,7 +62,6 @@ public class TbFcltSubjPartIn implements Serializable {
                 .inSeq(this.inSeq)
                 .partNmbr(this.partNmbr)
                 .inDt(this.inDt)
-                .inUnit(this.inUnit)
                 .perAmt(this.perAmt)
                 .inCnt(this.inCnt)
                 .cmpyId(this.cmpyId)