监理单位,专责新建审核流bug修复

This commit is contained in:
马三炮 2025-05-27 10:37:03 +08:00
parent 7327db95ef
commit ce2d341234
3 changed files with 6 additions and 2 deletions

View File

@ -20,6 +20,9 @@ public class AuditTask {
private String taskId;
@NotNull
private String contUuid;
/**
* 00业主用户01监理用户02承包商03分包商
*/
@NotNull
private String userType;
@NotNull

View File

@ -534,6 +534,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="params.beginTime != null and params.beginTime != ''">
and pfp.create_time between #{params.beginTime} and #{params.endTime}
</if>
order by pfp.create_time desc
</select>

View File

@ -204,7 +204,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
AND ppi.pro_name like concat('%',#{proName},'%')
</if>
<if test="supName != null and supName != ''">
AND ppi.sup_name like concat('%',#{supName},'%')
AND ppi.sup_unit_name like concat('%',#{supName},'%')
</if>
<if test="proId != null and proId != ''">
AND ppi.pro_id = #{proId}
@ -252,4 +252,4 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</select>
</mapper>
</mapper>