优化
This commit is contained in:
@ -29,4 +29,7 @@ public class BgtProjectTaskProgressQueryDTO {
|
||||
@ApiModelProperty(value = "上传人Id",hidden = true)
|
||||
private Long uploaderId;
|
||||
|
||||
@ApiModelProperty("任务ID")
|
||||
private Long taskId;
|
||||
|
||||
}
|
||||
|
@ -93,6 +93,7 @@ public class BgtProjectTaskProgressServiceImpl extends ServicePlusImpl<BgtProjec
|
||||
//批量退场
|
||||
recruitApplyService.quitBatch(bo.getTaskId());
|
||||
}
|
||||
bo.setUploaderId(SecurityUtils.getAppUserId());
|
||||
return save(bo);
|
||||
}
|
||||
|
||||
|
@ -76,6 +76,9 @@ public class AppTaskDetailVO {
|
||||
@ApiModelProperty("资质要求")
|
||||
private String qualification;
|
||||
|
||||
@ApiModelProperty("任务状态(1进行中 2已完成)")
|
||||
private String status;
|
||||
|
||||
/** 备注 */
|
||||
@ApiModelProperty("备注")
|
||||
private String remark;
|
||||
|
@ -37,10 +37,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
bptp.task_name,
|
||||
bptp.project_name
|
||||
from bgt_project_task_progress bptp
|
||||
where bptp.uploader_id = #{dto.createBy}
|
||||
where bptp.uploader_id = #{dto.uploaderId}
|
||||
<if test="dto.auditStatus != null and dto.auditStatus != '' ">
|
||||
and bptp.audit_status = #{dto.auditStatus}
|
||||
</if>
|
||||
<if test="dto.taskId != null">
|
||||
and bptp.task_id = #{dto.taskId}
|
||||
</if>
|
||||
</select>
|
||||
|
||||
</mapper>
|
||||
|
Reference in New Issue
Block a user