This commit is contained in:
zt
2025-02-27 16:56:13 +08:00
parent 5d1c3b39e2
commit 0c36f27726
6 changed files with 13 additions and 3 deletions

View File

@ -29,4 +29,7 @@ public class BgtProjectTaskProgressQueryDTO {
@ApiModelProperty(value = "上传人Id",hidden = true)
private Long uploaderId;
@ApiModelProperty("任务ID")
private Long taskId;
}

View File

@ -93,6 +93,7 @@ public class BgtProjectTaskProgressServiceImpl extends ServicePlusImpl<BgtProjec
//批量退场
recruitApplyService.quitBatch(bo.getTaskId());
}
bo.setUploaderId(SecurityUtils.getAppUserId());
return save(bo);
}

View File

@ -76,6 +76,9 @@ public class AppTaskDetailVO {
@ApiModelProperty("资质要求")
private String qualification;
@ApiModelProperty("任务状态1进行中 2已完成")
private String status;
/** 备注 */
@ApiModelProperty("备注")
private String remark;