增加料箱的库位支持
This commit is contained in:
parent
4711eac382
commit
2ce5028d07
@ -33,7 +33,7 @@ public class UcmCtBase extends BaseEntity {
|
|||||||
private String type;
|
private String type;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 预留字段1
|
* 预留字段1,表示当前料箱所在库位
|
||||||
*/
|
*/
|
||||||
private String attr1;
|
private String attr1;
|
||||||
|
|
||||||
|
@ -55,6 +55,9 @@
|
|||||||
<if test="type != null and type != ''">
|
<if test="type != null and type != ''">
|
||||||
and TYPE = #{type}
|
and TYPE = #{type}
|
||||||
</if>
|
</if>
|
||||||
|
<if test="attr1 != null">
|
||||||
|
and ATTR1 = #{attr1}
|
||||||
|
</if>
|
||||||
<if test="attr3 != null">
|
<if test="attr3 != null">
|
||||||
and ATTR3 = #{attr3}
|
and ATTR3 = #{attr3}
|
||||||
</if>
|
</if>
|
||||||
@ -78,6 +81,7 @@
|
|||||||
ucb.CODE,
|
ucb.CODE,
|
||||||
ucb.TYPE,
|
ucb.TYPE,
|
||||||
ucb.REMARK,
|
ucb.REMARK,
|
||||||
|
ucb.ATTR1,
|
||||||
ucb.ATTR3,
|
ucb.ATTR3,
|
||||||
ucb.CREATE_BY,
|
ucb.CREATE_BY,
|
||||||
ucb.CREATE_TIME,
|
ucb.CREATE_TIME,
|
||||||
@ -102,6 +106,7 @@
|
|||||||
ucb.CODE,
|
ucb.CODE,
|
||||||
ucb.TYPE,
|
ucb.TYPE,
|
||||||
ucb.REMARK,
|
ucb.REMARK,
|
||||||
|
ucb.ATTR1,
|
||||||
ucb.ATTR3,
|
ucb.ATTR3,
|
||||||
ucb.CREATE_BY,
|
ucb.CREATE_BY,
|
||||||
ucb.CREATE_TIME,
|
ucb.CREATE_TIME,
|
||||||
|
Loading…
Reference in New Issue
Block a user