This commit is contained in:
zt
2025-02-27 18:37:49 +08:00
parent c3b8f5bf89
commit 575eb5747e
10 changed files with 21 additions and 9 deletions

View File

@ -94,6 +94,9 @@ public class AppTaskDetailVO {
@ApiModelProperty("任务进度")
private Integer progress;
@ApiModelProperty("任务进度")
private Double progressDouble;
//结算情况
@ApiModelProperty("任务收款金额")
private Integer taskReceiveAmount;

View File

@ -60,5 +60,5 @@ public class AppTaskVO {
private Integer applyNum;
@ApiModelProperty("任务收款金额")
private Integer taskReceiveAmount;
private Integer taskReceiveAmount = 0;
}