完善大号物料字段

This commit is contained in:
刘名喜 2024-12-16 16:16:09 +08:00
parent 968fdcee45
commit f2478d9e89
2 changed files with 13 additions and 11 deletions

View File

@ -39,8 +39,8 @@ public class MdItem extends BaseEntity {
private String highValue; private String highValue;
private Integer attr1; private Integer attr1;
private Integer attr2; private Integer attr2;
private String attr3; private Integer attr3;
private String attr4; private Integer attr4;
private Long count; private Long count;
@ -203,19 +203,19 @@ public class MdItem extends BaseEntity {
this.attr2 = attr2; this.attr2 = attr2;
} }
public String getAttr3() { public Integer getAttr3() {
return attr3; return attr3;
} }
public void setAttr3(String attr3) { public void setAttr3(Integer attr3) {
this.attr3 = attr3; this.attr3 = attr3;
} }
public String getAttr4() { public Integer getAttr4() {
return attr4; return attr4;
} }
public void setAttr4(String attr4) { public void setAttr4(Integer attr4) {
this.attr4 = attr4; this.attr4 = attr4;
} }
@ -248,9 +248,9 @@ public class MdItem extends BaseEntity {
", maxStock=" + maxStock + ", maxStock=" + maxStock +
", highValue='" + highValue + '\'' + ", highValue='" + highValue + '\'' +
", attr1=" + attr1 + ", attr1=" + attr1 +
", attr2='" + attr2 + '\'' + ", attr2=" + attr2 +
", attr3='" + attr3 + '\'' + ", attr3=" + attr3 +
", attr4='" + attr4 + '\'' + ", attr4=" + attr4 +
", count=" + count + ", count=" + count +
'}'; '}';
} }

View File

@ -52,6 +52,8 @@
high_value, high_value,
attr1, attr1,
attr2, attr2,
attr3,
attr4,
create_by, create_by,
create_time, create_time,
remark remark
@ -323,10 +325,10 @@
<if test="attr2 != null"> <if test="attr2 != null">
attr2=#{attr2}, attr2=#{attr2},
</if> </if>
<if test="attr3 != null and attr3 != 0"> <if test="attr3 != null">
attr3=#{attr3}, attr3=#{attr3},
</if> </if>
<if test="attr4 != null and attr4 != 0"> <if test="attr4 != null">
attr4=#{attr4}, attr4=#{attr4},
</if> </if>
<if test="updateBy != null and updateBy != ''"> <if test="updateBy != null and updateBy != ''">