|
|
|
@ -21,16 +21,19 @@
|
|
|
|
|
<result property="percentageScore" column="percentage_score" jdbcType="VARCHAR"/>
|
|
|
|
|
<result property="remark" column="remark" jdbcType="VARCHAR"/>
|
|
|
|
|
<result property="deptId" column="dept_id" jdbcType="INTEGER"/>
|
|
|
|
|
<result property="createBy" column="create_by" />
|
|
|
|
|
<result property="updateBy" column="update_by" />
|
|
|
|
|
<result property="updateTime" column="update_time" />
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<sql id="Base_Column_List">
|
|
|
|
|
check_id,adduser,depart,
|
|
|
|
|
check_start_time,check_end_time,check_type,
|
|
|
|
|
area,framework,check_state,
|
|
|
|
|
check_name,create_time,total_score,real_score,percentage_score,remark,dept_id
|
|
|
|
|
check_name,create_time,total_score,real_score,percentage_score,remark,dept_id,create_by,update_by,update_time
|
|
|
|
|
</sql>
|
|
|
|
|
<select id="selectTdCheckReportList" resultType="com.ruoyi.system.domain.check.TdCheckReport">
|
|
|
|
|
select <include refid="Base_Column_List"/> from td_check_report
|
|
|
|
|
select <include refid="Base_Column_List"/> from td_check_report d
|
|
|
|
|
<trim prefix="where" prefixOverrides="and|or">
|
|
|
|
|
<if test="area!=null and area!=''">
|
|
|
|
|
AND area = #{area}
|
|
|
|
@ -56,6 +59,8 @@
|
|
|
|
|
<if test="checkEndTime != null and checkEndTime!=''"><!-- 结束时间检索 -->
|
|
|
|
|
AND check_end_time <= #{checkEndTime}
|
|
|
|
|
</if>
|
|
|
|
|
<!-- 数据范围过滤 -->
|
|
|
|
|
${params.dataScope}
|
|
|
|
|
</trim>
|
|
|
|
|
ORDER BY create_time DESC
|
|
|
|
|
</select>
|
|
|
|
|