|
|
|
@ -12,15 +12,15 @@
|
|
|
|
|
<result column="LENGHT" property="lenght" />
|
|
|
|
|
<result column="WIDTH" property="width" />
|
|
|
|
|
<result column="QTY" property="qty" />
|
|
|
|
|
<result column="CREATE_USER_BO" property="createUserBo" />
|
|
|
|
|
<result column="CREATE_USER" property="createUser" />
|
|
|
|
|
<result column="CREATED_DATE_TIME" property="createdDateTime" />
|
|
|
|
|
<result column="UPDATE_USER_BO" property="updateUserBo" />
|
|
|
|
|
<result column="UPDATED_DATE_TIME" property="updatedDateTime" />
|
|
|
|
|
<result column="MODIFU_USER" property="modifuUser" />
|
|
|
|
|
<result column="MODIFIED_DATE_TIME" property="modifiedDateTime" />
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<!-- 通用查询结果列 -->
|
|
|
|
|
<sql id="Base_Column_List">
|
|
|
|
|
HANDLE, SITE, INVENTORY, PARENT_INVENTORY, ITEM_BO, LENGHT, WIDTH, QTY, CREATE_USER_BO, CREATED_DATE_TIME, UPDATE_USER_BO, UPDATED_DATE_TIME
|
|
|
|
|
HANDLE, SITE, INVENTORY, PARENT_INVENTORY, ITEM_BO, LENGHT, WIDTH, QTY, CREATE_USER, CREATED_DATE_TIME, MODIFU_USER, MODIFIED_DATE_TIME
|
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
<!-- BaseMapper标准查询/修改/删除 -->
|
|
|
|
@ -53,7 +53,7 @@
|
|
|
|
|
SELECT <include refid="Base_Column_List"></include> FROM Z_SURPLUS_ITEM_RETURN
|
|
|
|
|
<where>
|
|
|
|
|
<if test="ew.entity.handle!=null">
|
|
|
|
|
HANDLE=#{ew.handle}
|
|
|
|
|
HANDLE=#{ew.handle}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
|
|
|
|
|
<if test="ew.entity.inventory!=null"> AND INVENTORY=#{ew.entity.inventory}</if>
|
|
|
|
@ -62,10 +62,10 @@
|
|
|
|
|
<if test="ew.entity.lenght!=null"> AND LENGHT=#{ew.entity.lenght}</if>
|
|
|
|
|
<if test="ew.entity.width!=null"> AND WIDTH=#{ew.entity.width}</if>
|
|
|
|
|
<if test="ew.entity.qty!=null"> AND QTY=#{ew.entity.qty}</if>
|
|
|
|
|
<if test="ew.entity.createUserBo!=null"> AND CREATE_USER_BO=#{ew.entity.createUserBo}</if>
|
|
|
|
|
<if test="ew.entity.createUser!=null"> AND CREATE_USER=#{ew.entity.createUser}</if>
|
|
|
|
|
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
|
|
|
|
<if test="ew.entity.updateUserBo!=null"> AND UPDATE_USER_BO=#{ew.entity.updateUserBo}</if>
|
|
|
|
|
<if test="ew.entity.updatedDateTime!=null"> AND UPDATED_DATE_TIME=#{ew.entity.updatedDateTime}</if>
|
|
|
|
|
<if test="ew.entity.modifuUser!=null"> AND MODIFU_USER=#{ew.entity.modifuUser}</if>
|
|
|
|
|
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
|
|
|
|
|
</where>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
@ -74,20 +74,20 @@
|
|
|
|
|
<where>
|
|
|
|
|
<if test="ew!=null">
|
|
|
|
|
<if test="ew.entity!=null">
|
|
|
|
|
<if test="ew.entity.handle!=null">
|
|
|
|
|
HANDLE=#{ew.entity.handle}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
|
|
|
|
|
<if test="ew.entity.inventory!=null"> AND INVENTORY=#{ew.entity.inventory}</if>
|
|
|
|
|
<if test="ew.entity.parentInventory!=null"> AND PARENT_INVENTORY=#{ew.entity.parentInventory}</if>
|
|
|
|
|
<if test="ew.entity.itemBo!=null"> AND ITEM_BO=#{ew.entity.itemBo}</if>
|
|
|
|
|
<if test="ew.entity.lenght!=null"> AND LENGHT=#{ew.entity.lenght}</if>
|
|
|
|
|
<if test="ew.entity.width!=null"> AND WIDTH=#{ew.entity.width}</if>
|
|
|
|
|
<if test="ew.entity.qty!=null"> AND QTY=#{ew.entity.qty}</if>
|
|
|
|
|
<if test="ew.entity.createUserBo!=null"> AND CREATE_USER_BO=#{ew.entity.createUserBo}</if>
|
|
|
|
|
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
|
|
|
|
<if test="ew.entity.updateUserBo!=null"> AND UPDATE_USER_BO=#{ew.entity.updateUserBo}</if>
|
|
|
|
|
<if test="ew.entity.updatedDateTime!=null"> AND UPDATED_DATE_TIME=#{ew.entity.updatedDateTime}</if>
|
|
|
|
|
<if test="ew.entity.handle!=null">
|
|
|
|
|
HANDLE=#{ew.entity.handle}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
|
|
|
|
|
<if test="ew.entity.inventory!=null"> AND INVENTORY=#{ew.entity.inventory}</if>
|
|
|
|
|
<if test="ew.entity.parentInventory!=null"> AND PARENT_INVENTORY=#{ew.entity.parentInventory}</if>
|
|
|
|
|
<if test="ew.entity.itemBo!=null"> AND ITEM_BO=#{ew.entity.itemBo}</if>
|
|
|
|
|
<if test="ew.entity.lenght!=null"> AND LENGHT=#{ew.entity.lenght}</if>
|
|
|
|
|
<if test="ew.entity.width!=null"> AND WIDTH=#{ew.entity.width}</if>
|
|
|
|
|
<if test="ew.entity.qty!=null"> AND QTY=#{ew.entity.qty}</if>
|
|
|
|
|
<if test="ew.entity.createUser!=null"> AND CREATE_USER=#{ew.entity.createUser}</if>
|
|
|
|
|
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
|
|
|
|
<if test="ew.entity.modifuUser!=null"> AND MODIFU_USER=#{ew.entity.modifuUser}</if>
|
|
|
|
|
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
|
|
|
|
|
</if>
|
|
|
|
|
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
|
|
|
|
|
${ew.sqlSegment}
|
|
|
|
@ -114,10 +114,10 @@
|
|
|
|
|
<if test="ew.entity.lenght!=null"> AND LENGHT=#{ew.entity.lenght}</if>
|
|
|
|
|
<if test="ew.entity.width!=null"> AND WIDTH=#{ew.entity.width}</if>
|
|
|
|
|
<if test="ew.entity.qty!=null"> AND QTY=#{ew.entity.qty}</if>
|
|
|
|
|
<if test="ew.entity.createUserBo!=null"> AND CREATE_USER_BO=#{ew.entity.createUserBo}</if>
|
|
|
|
|
<if test="ew.entity.createUser!=null"> AND CREATE_USER=#{ew.entity.createUser}</if>
|
|
|
|
|
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
|
|
|
|
<if test="ew.entity.updateUserBo!=null"> AND UPDATE_USER_BO=#{ew.entity.updateUserBo}</if>
|
|
|
|
|
<if test="ew.entity.updatedDateTime!=null"> AND UPDATED_DATE_TIME=#{ew.entity.updatedDateTime}</if>
|
|
|
|
|
<if test="ew.entity.modifuUser!=null"> AND MODIFU_USER=#{ew.entity.modifuUser}</if>
|
|
|
|
|
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
|
|
|
|
|
</if>
|
|
|
|
|
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
|
|
|
|
|
${ew.sqlSegment}
|
|
|
|
@ -144,10 +144,10 @@
|
|
|
|
|
<if test="ew.entity.lenght!=null"> AND LENGHT=#{ew.entity.lenght}</if>
|
|
|
|
|
<if test="ew.entity.width!=null"> AND WIDTH=#{ew.entity.width}</if>
|
|
|
|
|
<if test="ew.entity.qty!=null"> AND QTY=#{ew.entity.qty}</if>
|
|
|
|
|
<if test="ew.entity.createUserBo!=null"> AND CREATE_USER_BO=#{ew.entity.createUserBo}</if>
|
|
|
|
|
<if test="ew.entity.createUser!=null"> AND CREATE_USER=#{ew.entity.createUser}</if>
|
|
|
|
|
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
|
|
|
|
<if test="ew.entity.updateUserBo!=null"> AND UPDATE_USER_BO=#{ew.entity.updateUserBo}</if>
|
|
|
|
|
<if test="ew.entity.updatedDateTime!=null"> AND UPDATED_DATE_TIME=#{ew.entity.updatedDateTime}</if>
|
|
|
|
|
<if test="ew.entity.modifuUser!=null"> AND MODIFU_USER=#{ew.entity.modifuUser}</if>
|
|
|
|
|
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
|
|
|
|
|
</if>
|
|
|
|
|
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
|
|
|
|
|
${ew.sqlSegment}
|
|
|
|
@ -174,10 +174,10 @@
|
|
|
|
|
<if test="ew.entity.lenght!=null"> AND LENGHT=#{ew.entity.lenght}</if>
|
|
|
|
|
<if test="ew.entity.width!=null"> AND WIDTH=#{ew.entity.width}</if>
|
|
|
|
|
<if test="ew.entity.qty!=null"> AND QTY=#{ew.entity.qty}</if>
|
|
|
|
|
<if test="ew.entity.createUserBo!=null"> AND CREATE_USER_BO=#{ew.entity.createUserBo}</if>
|
|
|
|
|
<if test="ew.entity.createUser!=null"> AND CREATE_USER=#{ew.entity.createUser}</if>
|
|
|
|
|
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
|
|
|
|
<if test="ew.entity.updateUserBo!=null"> AND UPDATE_USER_BO=#{ew.entity.updateUserBo}</if>
|
|
|
|
|
<if test="ew.entity.updatedDateTime!=null"> AND UPDATED_DATE_TIME=#{ew.entity.updatedDateTime}</if>
|
|
|
|
|
<if test="ew.entity.modifuUser!=null"> AND MODIFU_USER=#{ew.entity.modifuUser}</if>
|
|
|
|
|
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
|
|
|
|
|
</if>
|
|
|
|
|
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
|
|
|
|
|
${ew.sqlSegment}
|
|
|
|
@ -204,10 +204,10 @@
|
|
|
|
|
<if test="ew.entity.lenght!=null"> AND LENGHT=#{ew.entity.lenght}</if>
|
|
|
|
|
<if test="ew.entity.width!=null"> AND WIDTH=#{ew.entity.width}</if>
|
|
|
|
|
<if test="ew.entity.qty!=null"> AND QTY=#{ew.entity.qty}</if>
|
|
|
|
|
<if test="ew.entity.createUserBo!=null"> AND CREATE_USER_BO=#{ew.entity.createUserBo}</if>
|
|
|
|
|
<if test="ew.entity.createUser!=null"> AND CREATE_USER=#{ew.entity.createUser}</if>
|
|
|
|
|
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
|
|
|
|
<if test="ew.entity.updateUserBo!=null"> AND UPDATE_USER_BO=#{ew.entity.updateUserBo}</if>
|
|
|
|
|
<if test="ew.entity.updatedDateTime!=null"> AND UPDATED_DATE_TIME=#{ew.entity.updatedDateTime}</if>
|
|
|
|
|
<if test="ew.entity.modifuUser!=null"> AND MODIFU_USER=#{ew.entity.modifuUser}</if>
|
|
|
|
|
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
|
|
|
|
|
</if>
|
|
|
|
|
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
|
|
|
|
|
${ew.sqlSegment}
|
|
|
|
@ -234,10 +234,10 @@
|
|
|
|
|
<if test="ew.entity.lenght!=null"> AND LENGHT=#{ew.entity.lenght}</if>
|
|
|
|
|
<if test="ew.entity.width!=null"> AND WIDTH=#{ew.entity.width}</if>
|
|
|
|
|
<if test="ew.entity.qty!=null"> AND QTY=#{ew.entity.qty}</if>
|
|
|
|
|
<if test="ew.entity.createUserBo!=null"> AND CREATE_USER_BO=#{ew.entity.createUserBo}</if>
|
|
|
|
|
<if test="ew.entity.createUser!=null"> AND CREATE_USER=#{ew.entity.createUser}</if>
|
|
|
|
|
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
|
|
|
|
<if test="ew.entity.updateUserBo!=null"> AND UPDATE_USER_BO=#{ew.entity.updateUserBo}</if>
|
|
|
|
|
<if test="ew.entity.updatedDateTime!=null"> AND UPDATED_DATE_TIME=#{ew.entity.updatedDateTime}</if>
|
|
|
|
|
<if test="ew.entity.modifuUser!=null"> AND MODIFU_USER=#{ew.entity.modifuUser}</if>
|
|
|
|
|
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
|
|
|
|
|
</if>
|
|
|
|
|
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
|
|
|
|
|
${ew.sqlSegment}
|
|
|
|
@ -260,10 +260,10 @@
|
|
|
|
|
<if test="lenght!=null">LENGHT,</if>
|
|
|
|
|
<if test="width!=null">WIDTH,</if>
|
|
|
|
|
<if test="qty!=null">QTY,</if>
|
|
|
|
|
<if test="createUserBo!=null">CREATE_USER_BO,</if>
|
|
|
|
|
<if test="createUser!=null">CREATE_USER,</if>
|
|
|
|
|
<if test="createdDateTime!=null">CREATED_DATE_TIME,</if>
|
|
|
|
|
<if test="updateUserBo!=null">UPDATE_USER_BO,</if>
|
|
|
|
|
<if test="updatedDateTime!=null">UPDATED_DATE_TIME,</if>
|
|
|
|
|
<if test="modifuUser!=null">MODIFU_USER,</if>
|
|
|
|
|
<if test="modifiedDateTime!=null">MODIFIED_DATE_TIME,</if>
|
|
|
|
|
</trim> VALUES
|
|
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
|
|
#{handle},
|
|
|
|
@ -274,10 +274,10 @@
|
|
|
|
|
<if test="lenght!=null">#{lenght},</if>
|
|
|
|
|
<if test="width!=null">#{width},</if>
|
|
|
|
|
<if test="qty!=null">#{qty},</if>
|
|
|
|
|
<if test="createUserBo!=null">#{createUserBo},</if>
|
|
|
|
|
<if test="createUser!=null">#{createUser},</if>
|
|
|
|
|
<if test="createdDateTime!=null">#{createdDateTime},</if>
|
|
|
|
|
<if test="updateUserBo!=null">#{updateUserBo},</if>
|
|
|
|
|
<if test="updatedDateTime!=null">#{updatedDateTime},</if>
|
|
|
|
|
<if test="modifuUser!=null">#{modifuUser},</if>
|
|
|
|
|
<if test="modifiedDateTime!=null">#{modifiedDateTime},</if>
|
|
|
|
|
</trim>
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
@ -295,10 +295,10 @@
|
|
|
|
|
#{lenght},
|
|
|
|
|
#{width},
|
|
|
|
|
#{qty},
|
|
|
|
|
#{createUserBo},
|
|
|
|
|
#{createUser},
|
|
|
|
|
#{createdDateTime},
|
|
|
|
|
#{updateUserBo},
|
|
|
|
|
#{updatedDateTime},
|
|
|
|
|
#{modifuUser},
|
|
|
|
|
#{modifiedDateTime},
|
|
|
|
|
</trim>
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
@ -312,11 +312,11 @@
|
|
|
|
|
<if test="et.lenght!=null">LENGHT=#{et.lenght},</if>
|
|
|
|
|
<if test="et.width!=null">WIDTH=#{et.width},</if>
|
|
|
|
|
<if test="et.qty!=null">QTY=#{et.qty},</if>
|
|
|
|
|
<if test="et.createUserBo!=null">CREATE_USER_BO=#{et.createUserBo},</if>
|
|
|
|
|
<if test="et.createUser!=null">CREATE_USER=#{et.createUser},</if>
|
|
|
|
|
<if test="et.createdDateTime!=null">CREATED_DATE_TIME=#{et.createdDateTime},</if>
|
|
|
|
|
<if test="et.updateUserBo!=null">UPDATE_USER_BO=#{et.updateUserBo},</if>
|
|
|
|
|
<if test="et.updatedDateTime!=null">UPDATED_DATE_TIME=#{et.updatedDateTime},</if>
|
|
|
|
|
</trim> WHERE HANDLE=#{et.handle} <if test="et instanceof java.util.Map"><if test="et.MP_OPTLOCK_VERSION_ORIGINAL!=null">and ${et.MP_OPTLOCK_VERSION_COLUMN}=#{et.MP_OPTLOCK_VERSION_ORIGINAL}</if></if>
|
|
|
|
|
<if test="et.modifuUser!=null">MODIFU_USER=#{et.modifuUser},</if>
|
|
|
|
|
<if test="et.modifiedDateTime!=null">MODIFIED_DATE_TIME=#{et.modifiedDateTime},</if>
|
|
|
|
|
</trim> WHERE HANDLE=#{et.handle} <if test="et instanceof java.util.Map"><if test="et.MP_OPTLOCK_VERSION_ORIGINAL!=null">and ${et.MP_OPTLOCK_VERSION_COLUMN}=#{et.MP_OPTLOCK_VERSION_ORIGINAL}</if></if>
|
|
|
|
|
</update>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -329,11 +329,11 @@
|
|
|
|
|
LENGHT=#{et.lenght},
|
|
|
|
|
WIDTH=#{et.width},
|
|
|
|
|
QTY=#{et.qty},
|
|
|
|
|
CREATE_USER_BO=#{et.createUserBo},
|
|
|
|
|
CREATE_USER=#{et.createUser},
|
|
|
|
|
CREATED_DATE_TIME=#{et.createdDateTime},
|
|
|
|
|
UPDATE_USER_BO=#{et.updateUserBo},
|
|
|
|
|
UPDATED_DATE_TIME=#{et.updatedDateTime},
|
|
|
|
|
</trim> WHERE HANDLE=#{et.handle} <if test="et instanceof java.util.Map"><if test="et.MP_OPTLOCK_VERSION_ORIGINAL!=null">and ${et.MP_OPTLOCK_VERSION_COLUMN}=#{et.MP_OPTLOCK_VERSION_ORIGINAL}</if></if>
|
|
|
|
|
MODIFU_USER=#{et.modifuUser},
|
|
|
|
|
MODIFIED_DATE_TIME=#{et.modifiedDateTime},
|
|
|
|
|
</trim> WHERE HANDLE=#{et.handle} <if test="et instanceof java.util.Map"><if test="et.MP_OPTLOCK_VERSION_ORIGINAL!=null">and ${et.MP_OPTLOCK_VERSION_COLUMN}=#{et.MP_OPTLOCK_VERSION_ORIGINAL}</if></if>
|
|
|
|
|
</update>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -346,10 +346,10 @@
|
|
|
|
|
<if test="et.lenght!=null">LENGHT=#{et.lenght},</if>
|
|
|
|
|
<if test="et.width!=null">WIDTH=#{et.width},</if>
|
|
|
|
|
<if test="et.qty!=null">QTY=#{et.qty},</if>
|
|
|
|
|
<if test="et.createUserBo!=null">CREATE_USER_BO=#{et.createUserBo},</if>
|
|
|
|
|
<if test="et.createUser!=null">CREATE_USER=#{et.createUser},</if>
|
|
|
|
|
<if test="et.createdDateTime!=null">CREATED_DATE_TIME=#{et.createdDateTime},</if>
|
|
|
|
|
<if test="et.updateUserBo!=null">UPDATE_USER_BO=#{et.updateUserBo},</if>
|
|
|
|
|
<if test="et.updatedDateTime!=null">UPDATED_DATE_TIME=#{et.updatedDateTime},</if>
|
|
|
|
|
<if test="et.modifuUser!=null">MODIFU_USER=#{et.modifuUser},</if>
|
|
|
|
|
<if test="et.modifiedDateTime!=null">MODIFIED_DATE_TIME=#{et.modifiedDateTime},</if>
|
|
|
|
|
</trim>
|
|
|
|
|
<where>
|
|
|
|
|
<if test="ew!=null">
|
|
|
|
@ -362,10 +362,10 @@
|
|
|
|
|
<if test="ew.entity.lenght!=null"> AND LENGHT=#{ew.entity.lenght}</if>
|
|
|
|
|
<if test="ew.entity.width!=null"> AND WIDTH=#{ew.entity.width}</if>
|
|
|
|
|
<if test="ew.entity.qty!=null"> AND QTY=#{ew.entity.qty}</if>
|
|
|
|
|
<if test="ew.entity.createUserBo!=null"> AND CREATE_USER_BO=#{ew.entity.createUserBo}</if>
|
|
|
|
|
<if test="ew.entity.createUser!=null"> AND CREATE_USER=#{ew.entity.createUser}</if>
|
|
|
|
|
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
|
|
|
|
<if test="ew.entity.updateUserBo!=null"> AND UPDATE_USER_BO=#{ew.entity.updateUserBo}</if>
|
|
|
|
|
<if test="ew.entity.updatedDateTime!=null"> AND UPDATED_DATE_TIME=#{ew.entity.updatedDateTime}</if>
|
|
|
|
|
<if test="ew.entity.modifuUser!=null"> AND MODIFU_USER=#{ew.entity.modifuUser}</if>
|
|
|
|
|
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
|
|
|
|
|
</if>
|
|
|
|
|
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
|
|
|
|
|
${ew.sqlSegment}
|
|
|
|
@ -409,10 +409,10 @@
|
|
|
|
|
<if test="ew.entity.lenght!=null"> AND LENGHT=#{ew.entity.lenght}</if>
|
|
|
|
|
<if test="ew.entity.width!=null"> AND WIDTH=#{ew.entity.width}</if>
|
|
|
|
|
<if test="ew.entity.qty!=null"> AND QTY=#{ew.entity.qty}</if>
|
|
|
|
|
<if test="ew.entity.createUserBo!=null"> AND CREATE_USER_BO=#{ew.entity.createUserBo}</if>
|
|
|
|
|
<if test="ew.entity.createUser!=null"> AND CREATE_USER=#{ew.entity.createUser}</if>
|
|
|
|
|
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
|
|
|
|
<if test="ew.entity.updateUserBo!=null"> AND UPDATE_USER_BO=#{ew.entity.updateUserBo}</if>
|
|
|
|
|
<if test="ew.entity.updatedDateTime!=null"> AND UPDATED_DATE_TIME=#{ew.entity.updatedDateTime}</if>
|
|
|
|
|
<if test="ew.entity.modifuUser!=null"> AND MODIFU_USER=#{ew.entity.modifuUser}</if>
|
|
|
|
|
<if test="ew.entity.modifiedDateTime!=null"> AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
|
|
|
|
|
</if>
|
|
|
|
|
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
|
|
|
|
|
${ew.sqlSegment}
|
|
|
|
|