| | |
| | | and t2.name like concat('%',#{name},'%') |
| | | </if> |
| | | <if test="versionStatus != 'null' and versionStatus != ''"> |
| | | and t1.version_status like concat('%',#{versionStatus},'%') |
| | | and t1.version_status = #{versionStatus} |
| | | </if> |
| | | <if test="versionStatus == 'null' "> |
| | | and t1.version_status='2' |
| | | </if> |
| | | <if test="workCenterIds != null"> |
| | | and t2.work_center_id in |
| | | <foreach collection="workCenterIds" open="(" separator="," close=")" item="workCenterId"> |
| | | #{workCenterId} |
| | | </foreach> |
| | | </if> |
| | | ORDER BY t1.create_time desc |
| | | </select> |
| | | <select id="getInspectionStandardMapList" resultType="java.util.Map"> |