|
@@ -237,6 +237,24 @@
|
|
|
standard.period asc
|
|
|
</select>
|
|
|
|
|
|
+ <select id="selectList2" parameterType="com.platform.dao.dto.check.CheckJobDTO"
|
|
|
+ resultType="com.platform.dao.vo.query.check.CheckJobVO">
|
|
|
+ select checkjob.*, u.real_name as checkUserName,
|
|
|
+ sbinfo.name sbName, sbinfo.no sbNo, sbinfo.level sbLevel,sbinfo.id,
|
|
|
+ partinfo.name partName,
|
|
|
+ standard.no standardNo, standard.name standardName,standard.level standardLevel,
|
|
|
+ standard.period period, standard.period_type periodType,position .id as positionId,position .name as positionName
|
|
|
+ from t_check_job as checkjob
|
|
|
+ left join t_sb_info sbinfo on sbinfo.id = checkjob.sb_id
|
|
|
+ left join t_part_info partinfo on partinfo.id = checkjob.part_id
|
|
|
+ left join t_check_standard standard on standard.id = checkjob.standard_id
|
|
|
+ left join t_sys_user u on checkjob.check_user_id = u.user_id
|
|
|
+ left join t_sb_position position on position.id = sbinfo.position_id
|
|
|
+ <where>
|
|
|
+ <include refid="List_Condition"/>
|
|
|
+ </where>
|
|
|
+ </select>
|
|
|
+
|
|
|
<select id="getScreenCountByTime" parameterType="com.platform.dao.dto.check.CheckJobDTO"
|
|
|
resultType="com.platform.dao.vo.query.check.CheckJobVO">
|
|
|
select count(checkjob.id) as countNum
|