[修改] 权限申请对接 + 保密结束时间定时任务

This commit is contained in:
bupengxiang
2023-05-10 18:03:27 +08:00
parent 5997e134b9
commit 33e87fea97
32 changed files with 180 additions and 36 deletions
@@ -114,13 +114,21 @@
where a.data_id = #{dataId}
</select>
<select id="selectActListBydataId" resultType="com.adc.da.report.eo.PowerApplyAct">
select a.*
select a.*,
rep.name,rep.keycontent,rep.maincontent,rep.DEPARTMENT,rep.year,rep.fileid,rep.confidentialLevel,rep.privacyLevel,
rep.createUserId , u.usname as createUserName
from <include refid="TableName"/> a
left join TT_REPORT_MANAGE rep on a.report_id = rep.id
left join ts_user u on u.usid = rep.createUserId
where a.data_id = #{dataId} and a.del_flag = 0
</select>
<select id="selectListByPrcId" resultType="com.adc.da.report.vo.PowerApplyActPageVO">
select a.*
select a.*,
rep.name,rep.keycontent,rep.maincontent,rep.DEPARTMENT,rep.year,rep.fileid,rep.confidentialLevel,rep.privacyLevel,
rep.createUserId , u.usname as createUserName
from <include refid="TableName"/> a
left join TT_REPORT_MANAGE rep on a.report_id = rep.id
left join ts_user u on u.usid = rep.createUserId
where a.prc_id = #{prcId} and a.del_flag = 0
</select>
</mapper>