|
|
|
@ -1293,6 +1293,27 @@ b.MinValue,b.ItemRemark,b.ItemType |
|
|
|
</where> |
|
|
|
</select> |
|
|
|
|
|
|
|
<!-- 获取审核人员列表 --> |
|
|
|
<select id="getCheckerList" resultType="EamAdminData" parameterType="EamAdminData"> |
|
|
|
SELECT |
|
|
|
site, |
|
|
|
user_id, |
|
|
|
username as adminID, |
|
|
|
email, |
|
|
|
mobile as phone, |
|
|
|
user_display as adminName |
|
|
|
FROM sys_user |
|
|
|
<where> |
|
|
|
AND site = #{site} |
|
|
|
<if test = "adminID != null and adminID != ''"> |
|
|
|
AND username LIKE '%' + #{adminID}+'%' |
|
|
|
</if> |
|
|
|
<if test = "adminName != null and adminName != ''"> |
|
|
|
AND user_display LIKE '%' + #{adminName}+'%' |
|
|
|
</if> |
|
|
|
</where> |
|
|
|
</select> |
|
|
|
|
|
|
|
<!-- 点检工单审核 --> |
|
|
|
<update id="checkWorkOrder" parameterType="EamWorkOrderInData"> |
|
|
|
UPDATE eam_workOrder |
|
|
|
|