@ -23,11 +23,12 @@
<result column= "MODIFY_USER" property= "modifyUser" />
<result column= "MODIFIED_DATE_TIME" property= "modifiedDateTime" />
<result column= "NC_CODE_DESC" property= "ncCodeDesc" />
<result column= "REPORT_USER_GROUP" property= "reportUserGroup" />
</resultMap>
<!-- 通用查询结果列 -->
<sql id= "Base_Column_List" >
HANDLE, SITE, TASK_NO, WORK_CENTER, SHOP_ORDER, ITEM, OP_STEP, RESRCE, SFC, NC_CODE, NC_QTY, LOCATION, STATE, REMARK, CREATE_USER, CREATED_DATE_TIME, MODIFY_USER, MODIFIED_DATE_TIME, NC_CODE_DESC
HANDLE, SITE, TASK_NO, WORK_CENTER, SHOP_ORDER, ITEM, OP_STEP, RESRCE, SFC, NC_CODE, NC_QTY, LOCATION, STATE, REMARK, CREATE_USER, CREATED_DATE_TIME, MODIFY_USER, MODIFIED_DATE_TIME, NC_CODE_DESC, REPORT_USER_GROUP
</sql>
<!-- BaseMapper标准查询/修改/删除 -->
@ -80,6 +81,7 @@
<if test= "ew.entity.modifyUser!=null" > AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test= "ew.entity.modifiedDateTime!=null" > AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test= "ew.entity.ncCodeDesc!=null" > AND NC_CODE_DESC=#{ew.entity.ncCodeDesc}</if>
<if test= "ew.entity.reportUserGroup!=null" > AND REPORT_USER_GROUP=#{ew.entity.reportUserGroup}</if>
</where>
</select>
@ -109,6 +111,7 @@
<if test= "ew.entity.modifyUser!=null" > AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test= "ew.entity.modifiedDateTime!=null" > AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test= "ew.entity.ncCodeDesc!=null" > AND NC_CODE_DESC=#{ew.entity.ncCodeDesc}</if>
<if test= "ew.entity.reportUserGroup!=null" > AND REPORT_USER_GROUP=#{ew.entity.reportUserGroup}</if>
</if>
<if test= "ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere" >
${ew.sqlSegment}
@ -146,6 +149,7 @@
<if test= "ew.entity.modifyUser!=null" > AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test= "ew.entity.modifiedDateTime!=null" > AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test= "ew.entity.ncCodeDesc!=null" > AND NC_CODE_DESC=#{ew.entity.ncCodeDesc}</if>
<if test= "ew.entity.reportUserGroup!=null" > AND REPORT_USER_GROUP=#{ew.entity.reportUserGroup}</if>
</if>
<if test= "ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere" >
${ew.sqlSegment}
@ -183,6 +187,7 @@
<if test= "ew.entity.modifyUser!=null" > AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test= "ew.entity.modifiedDateTime!=null" > AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test= "ew.entity.ncCodeDesc!=null" > AND NC_CODE_DESC=#{ew.entity.ncCodeDesc}</if>
<if test= "ew.entity.reportUserGroup!=null" > AND REPORT_USER_GROUP=#{ew.entity.reportUserGroup}</if>
</if>
<if test= "ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere" >
${ew.sqlSegment}
@ -220,6 +225,7 @@
<if test= "ew.entity.modifyUser!=null" > AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test= "ew.entity.modifiedDateTime!=null" > AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test= "ew.entity.ncCodeDesc!=null" > AND NC_CODE_DESC=#{ew.entity.ncCodeDesc}</if>
<if test= "ew.entity.reportUserGroup!=null" > AND REPORT_USER_GROUP=#{ew.entity.reportUserGroup}</if>
</if>
<if test= "ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere" >
${ew.sqlSegment}
@ -257,6 +263,7 @@
<if test= "ew.entity.modifyUser!=null" > AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test= "ew.entity.modifiedDateTime!=null" > AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test= "ew.entity.ncCodeDesc!=null" > AND NC_CODE_DESC=#{ew.entity.ncCodeDesc}</if>
<if test= "ew.entity.reportUserGroup!=null" > AND REPORT_USER_GROUP=#{ew.entity.reportUserGroup}</if>
</if>
<if test= "ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere" >
${ew.sqlSegment}
@ -294,6 +301,7 @@
<if test= "ew.entity.modifyUser!=null" > AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test= "ew.entity.modifiedDateTime!=null" > AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test= "ew.entity.ncCodeDesc!=null" > AND NC_CODE_DESC=#{ew.entity.ncCodeDesc}</if>
<if test= "ew.entity.reportUserGroup!=null" > AND REPORT_USER_GROUP=#{ew.entity.reportUserGroup}</if>
</if>
<if test= "ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere" >
${ew.sqlSegment}
@ -327,6 +335,7 @@
<if test= "modifyUser!=null" > MODIFY_USER,</if>
<if test= "modifiedDateTime!=null" > MODIFIED_DATE_TIME,</if>
<if test= "ncCodeDesc!=null" > NC_CODE_DESC,</if>
<if test= "reportUserGroup!=null" > REPORT_USER_GROUP,</if>
</trim> VALUES
<trim prefix= "(" suffix= ")" suffixOverrides= "," >
#{handle},
@ -348,6 +357,7 @@
<if test= "modifyUser!=null" > #{modifyUser},</if>
<if test= "modifiedDateTime!=null" > #{modifiedDateTime},</if>
<if test= "ncCodeDesc!=null" > #{ncCodeDesc},</if>
<if test= "reportUserGroup!=null" > #{reportUserGroup},</if>
</trim>
</insert>
@ -376,6 +386,7 @@
#{modifyUser},
#{modifiedDateTime},
#{ncCodeDesc},
#{reportUserGroup},
</trim>
</insert>
@ -400,6 +411,7 @@
<if test= "et.modifyUser!=null" > MODIFY_USER=#{et.modifyUser},</if>
<if test= "et.modifiedDateTime!=null" > MODIFIED_DATE_TIME=#{et.modifiedDateTime},</if>
<if test= "et.ncCodeDesc!=null" > NC_CODE_DESC=#{et.ncCodeDesc},</if>
<if test= "et.reportUserGroup!=null" > REPORT_USER_GROUP=#{et.reportUserGroup},</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>
@ -424,6 +436,7 @@
MODIFY_USER=#{et.modifyUser},
MODIFIED_DATE_TIME=#{et.modifiedDateTime},
NC_CODE_DESC=#{et.ncCodeDesc},
REPORT_USER_GROUP=#{et.reportUserGroup},
</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>
@ -448,6 +461,7 @@
<if test= "et.modifyUser!=null" > MODIFY_USER=#{et.modifyUser},</if>
<if test= "et.modifiedDateTime!=null" > MODIFIED_DATE_TIME=#{et.modifiedDateTime},</if>
<if test= "et.ncCodeDesc!=null" > NC_CODE_DESC=#{et.ncCodeDesc},</if>
<if test= "et.reportUserGroup!=null" > REPORT_USER_GROUP=#{et.reportUserGroup},</if>
</trim>
<where >
<if test= "ew!=null" >
@ -471,6 +485,7 @@
<if test= "ew.entity.modifyUser!=null" > AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test= "ew.entity.modifiedDateTime!=null" > AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test= "ew.entity.ncCodeDesc!=null" > AND NC_CODE_DESC=#{ew.entity.ncCodeDesc}</if>
<if test= "ew.entity.reportUserGroup!=null" > AND REPORT_USER_GROUP=#{ew.entity.reportUserGroup}</if>
</if>
<if test= "ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere" >
${ew.sqlSegment}
@ -525,6 +540,7 @@
<if test= "ew.entity.modifyUser!=null" > AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test= "ew.entity.modifiedDateTime!=null" > AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test= "ew.entity.ncCodeDesc!=null" > AND NC_CODE_DESC=#{ew.entity.ncCodeDesc}</if>
<if test= "ew.entity.reportUserGroup!=null" > AND REPORT_USER_GROUP=#{ew.entity.reportUserGroup}</if>
</if>
<if test= "ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere" >
${ew.sqlSegment}
@ -570,6 +586,17 @@
<if test= "ew.entity.createdDateTime!=null" > AND ZSR.CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test= "ew.entity.modifyUser!=null" > AND ZSR.MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test= "ew.entity.modifiedDateTime!=null" > AND ZSR.MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
<if test= "userGroupList != null" >
<if test= "userGroupList.size <= 0" >
AND 1 = 2
</if>
<if test= "userGroupList.size > 0" >
AND ZSR.REPORT_USER_GROUP IN
<foreach item= "item" index= "index" collection= "userGroupList" separator= "," open= "(" close= ")" >
UPPER(#{item.userGroup})
</foreach>
</if>
</if>
</if>
<if test= "startTime!=null" > AND ZSR.CREATED_DATE_TIME >=#{startTime}</if>
<if test= "endTime!=null" > AND ZSR.CREATED_DATE_TIME < =#{endTime}</if>