jsk lease_out_details 添加 box_code

This commit is contained in:
jiask 2026-01-19 18:41:36 +08:00
parent 8e9f858e52
commit 2938014a24
2 changed files with 7 additions and 0 deletions

View File

@ -36,6 +36,7 @@ public class LeaseOutDetails extends BaseEntity {
@ApiModelProperty(value = "标准箱ID") @ApiModelProperty(value = "标准箱ID")
private Long boxId; private Long boxId;
private String boxCode;
/** 规格ID */ /** 规格ID */
@Excel(name = "规格ID") @Excel(name = "规格ID")

View File

@ -116,6 +116,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="boxId != null and boxId != ''"> <if test="boxId != null and boxId != ''">
box_id, box_id,
</if> </if>
<if test="boxCode != null and boxCode != ''">
box_code,
</if>
create_time, create_time,
update_time update_time
</trim> </trim>
@ -159,6 +162,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="boxId != null and boxId != ''"> <if test="boxId != null and boxId != ''">
#{boxId}, #{boxId},
</if> </if>
<if test="boxCode != null and boxCode != ''">
#{boxCode},
</if>
NOW(), NOW(),
NOW() NOW()
</trim> </trim>