|
|
|
@ -14,10 +14,13 @@
|
|
|
|
|
<result property="updateBy" column="update_by"/>
|
|
|
|
|
<result property="updateTime" column="update_time"/>
|
|
|
|
|
<result property="remark" column="remark"/>
|
|
|
|
|
<result property="length" column="length"/>
|
|
|
|
|
<result property="width" column="width"/>
|
|
|
|
|
<result property="height" column="height"/>
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<sql id="selectMesBoxVo">
|
|
|
|
|
select box_id, box_name, box_type, status, create_by, create_time, update_by, update_time, remark from mes_box
|
|
|
|
|
select box_id, box_name, box_type, status,length, width, height, create_by, create_time, update_by, update_time, remark from mes_box
|
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
<select id="selectMesBoxList" parameterType="MesBox" resultMap="MesBoxResult">
|
|
|
|
@ -45,44 +48,32 @@
|
|
|
|
|
<insert id="insertMesBox" parameterType="MesBox">
|
|
|
|
|
insert into mes_box
|
|
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
|
|
<if test="boxId != null">box_id,
|
|
|
|
|
</if>
|
|
|
|
|
<if test="boxName != null">box_name,
|
|
|
|
|
</if>
|
|
|
|
|
<if test="boxType != null">box_type,
|
|
|
|
|
</if>
|
|
|
|
|
<if test="status != null">status,
|
|
|
|
|
</if>
|
|
|
|
|
<if test="createBy != null">create_by,
|
|
|
|
|
</if>
|
|
|
|
|
<if test="createTime != null">create_time,
|
|
|
|
|
</if>
|
|
|
|
|
<if test="updateBy != null">update_by,
|
|
|
|
|
</if>
|
|
|
|
|
<if test="updateTime != null">update_time,
|
|
|
|
|
</if>
|
|
|
|
|
<if test="remark != null">remark,
|
|
|
|
|
</if>
|
|
|
|
|
<if test="boxId != null">box_id,</if>
|
|
|
|
|
<if test="boxName != null">box_name,</if>
|
|
|
|
|
<if test="boxType != null">box_type,</if>
|
|
|
|
|
<if test="status != null">status,</if>
|
|
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
|
|
<if test="length != null">length,</if>
|
|
|
|
|
<if test="width != null">width,</if>
|
|
|
|
|
<if test="height != null">height,</if>
|
|
|
|
|
<if test="createTime != null">create_time,</if>
|
|
|
|
|
<if test="updateBy != null">update_by,</if>
|
|
|
|
|
<if test="updateTime != null">update_time,</if>
|
|
|
|
|
<if test="remark != null">remark,</if>
|
|
|
|
|
</trim>
|
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
|
<if test="boxId != null">#{boxId},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="boxName != null">#{boxName},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="boxType != null">#{boxType},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="status != null">#{status},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="createBy != null">#{createBy},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="createTime != null">#{createTime},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="updateBy != null">#{updateBy},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="updateTime != null">#{updateTime},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="remark != null">#{remark},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="boxId != null">#{boxId},</if>
|
|
|
|
|
<if test="boxName != null">#{boxName},</if>
|
|
|
|
|
<if test="boxType != null">#{boxType},</if>
|
|
|
|
|
<if test="status != null">#{status},</if>
|
|
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
|
|
<if test="length != null">#{length},</if>
|
|
|
|
|
<if test="width != null">#{width},</if>
|
|
|
|
|
<if test="height != null">#{height},</if>
|
|
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
|
|
|
<if test="updateTime != null">#{updateTime},</if>
|
|
|
|
|
<if test="remark != null">#{remark},</if>
|
|
|
|
|
</trim>
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
@ -98,6 +89,15 @@
|
|
|
|
|
<if test="status != null">status =
|
|
|
|
|
#{status},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="length != null">length =
|
|
|
|
|
#{length},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="width != null">width =
|
|
|
|
|
#{width},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="height != null">height =
|
|
|
|
|
#{height},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="createBy != null">create_by =
|
|
|
|
|
#{createBy},
|
|
|
|
|
</if>
|
|
|
|
@ -141,4 +141,10 @@
|
|
|
|
|
from mes_box
|
|
|
|
|
where box_type = #{boxType}
|
|
|
|
|
</select>
|
|
|
|
|
<select id="selectBoxByBoxType" parameterType="String" resultMap="MesBoxResult">
|
|
|
|
|
<include refid="selectMesBoxVo"/>
|
|
|
|
|
where box_type = #{boxType} and del_flag = '0'
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</mapper>
|
|
|
|
|