增加料箱的库位支持

This commit is contained in:
刘名喜 2024-12-19 09:12:03 +08:00
parent 4711eac382
commit 2ce5028d07
2 changed files with 6 additions and 1 deletions

View File

@ -33,7 +33,7 @@ public class UcmCtBase extends BaseEntity {
private String type;
/**
* 预留字段1
* 预留字段1表示当前料箱所在库位
*/
private String attr1;

View File

@ -55,6 +55,9 @@
<if test="type != null and type != ''">
and TYPE = #{type}
</if>
<if test="attr1 != null">
and ATTR1 = #{attr1}
</if>
<if test="attr3 != null">
and ATTR3 = #{attr3}
</if>
@ -78,6 +81,7 @@
ucb.CODE,
ucb.TYPE,
ucb.REMARK,
ucb.ATTR1,
ucb.ATTR3,
ucb.CREATE_BY,
ucb.CREATE_TIME,
@ -102,6 +106,7 @@
ucb.CODE,
ucb.TYPE,
ucb.REMARK,
ucb.ATTR1,
ucb.ATTR3,
ucb.CREATE_BY,
ucb.CREATE_TIME,