推送任务进度操作历史,推送项目总览

This commit is contained in:
2026-05-10 16:38:39 +08:00
parent 9ce5cb8f2e
commit 47baa575df
195 changed files with 2767 additions and 5086 deletions

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.oa.mapper.OaProjectOperationLogMapper">
<select id="selectVoPagePlus" resultType="com.ruoyi.oa.domain.vo.OaProjectOperationLogVo">
SELECT
l.log_id AS logId,
l.project_id AS projectId,
p.project_name AS projectName,
p.project_num AS projectNum,
l.target_type AS targetType,
l.target_id AS targetId,
l.target_name AS targetName,
l.operation_type AS operationType,
l.operation_desc AS operationDesc,
l.before_value AS beforeValue,
l.after_value AS afterValue,
l.operator AS operator,
l.operate_time AS operateTime,
l.create_time AS createTime
FROM oa_project_operation_log l
LEFT JOIN sys_oa_project p ON p.project_id = l.project_id
${ew.customSqlSegment}
</select>
</mapper>