jsk lease_out_details 添加 box_code
This commit is contained in:
parent
8e9f858e52
commit
2938014a24
|
|
@ -36,6 +36,7 @@ public class LeaseOutDetails extends BaseEntity {
|
|||
|
||||
@ApiModelProperty(value = "标准箱ID")
|
||||
private Long boxId;
|
||||
private String boxCode;
|
||||
|
||||
/** 规格ID */
|
||||
@Excel(name = "规格ID")
|
||||
|
|
|
|||
|
|
@ -116,6 +116,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="boxId != null and boxId != ''">
|
||||
box_id,
|
||||
</if>
|
||||
<if test="boxCode != null and boxCode != ''">
|
||||
box_code,
|
||||
</if>
|
||||
create_time,
|
||||
update_time
|
||||
</trim>
|
||||
|
|
@ -159,6 +162,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="boxId != null and boxId != ''">
|
||||
#{boxId},
|
||||
</if>
|
||||
<if test="boxCode != null and boxCode != ''">
|
||||
#{boxCode},
|
||||
</if>
|
||||
NOW(),
|
||||
NOW()
|
||||
</trim>
|
||||
|
|
|
|||
Loading…
Reference in New Issue