Commit cebf3a34 authored by 周昊's avatar 周昊

1、修改pc端任务管理、任务台账筛选接口

parent 9ee0c714
...@@ -101,6 +101,14 @@ public class RiskPlan extends BaseEntityClean ...@@ -101,6 +101,14 @@ public class RiskPlan extends BaseEntityClean
@TableField(exist = false) @TableField(exist = false)
private String isLedger; private String isLedger;
/** 创建人员 */
@TableField(exist = false)
private String createUserName;
/** 负责人员 */
@TableField(exist = false)
private String leaderUserName;
......
...@@ -79,6 +79,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -79,6 +79,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="startTime != null "> and TT.start_time = #{startTime}</if> <if test="startTime != null "> and TT.start_time = #{startTime}</if>
<if test="endTime != null "> and TT.end_time = #{endTime}</if> <if test="endTime != null "> and TT.end_time = #{endTime}</if>
<if test="status != null and status != ''"> and TT.status = #{status}</if> <if test="status != null and status != ''"> and TT.status = #{status}</if>
<if test="projectName != null and projectName != ''"> and TT.projectName like concat('%', #{projectName}, '%')</if>
<if test="createUserName != null and createUserName != ''"> and TT.createUserName like concat('%', #{createUserName}, '%')</if>
<if test="leaderUserName != null and leaderUserName != ''"> and TT.leaderUserName like concat('%', #{leaderUserName}, '%')</if>
</where> </where>
order by TT.id desc order by TT.id desc
</select> </select>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment