提交代码

dev_xds
姜玉琦 2023-12-25 00:53:30 +08:00
parent 4ab19823f0
commit b713df6815
2 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@ public class FlowTaskEntity extends BaseEntity{
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date finishTime;
private long deptId;
private long deptId;
private long projectId;
public long getDeptId() {

View File

@ -372,7 +372,7 @@
<if test="procDefKey != null and procDefKey != ''"> and fa.procDefKey = #{procDefKey}</if>
<if test="businessKey != null and businessKey != ''"> and fa.businessKey = #{businessKey}</if>
<!-- 查询条件-项目部门 -->
<if test="projectDeptId != null "> and fa.businessDeptId = #{projectDeptId}</if>
<if test="projectDeptId != null and projectDeptId != ''"> and fa.businessDeptId = #{projectDeptId}</if>
</where>
order by fa.createTime desc
</select>