TASK: 结果返回parentId;

This commit is contained in:
shahaibo
2025-06-20 13:50:29 +08:00
parent 627dad7aac
commit df5bbc3675
10 changed files with 73 additions and 2 deletions

View File

@@ -23,31 +23,45 @@ public class CloudTask implements Serializable {
@TableId(value = "id", type = IdType.AUTO)
private Long id;
@ApiModelProperty("任务名")
private String name;
@ApiModelProperty("项目ID")
private Long projectId;
@ApiModelProperty("collectionId")
private Long collectionId;
@ApiModelProperty("designId")
private Long designId;
@ApiModelProperty("任务类型")
private String buildType;
@ApiModelProperty("生成数量")
private Integer nums;
@ApiModelProperty("完成数量")
private Integer completedNum;
@ApiModelProperty("消耗积分")
private Integer costCredits;
@ApiModelProperty("状态1完成0未完成")
private Integer status;
@ApiModelProperty("批处理ID")
private String taskId;
@ApiModelProperty("创建时间")
private LocalDateTime createTime;
@ApiModelProperty("任务开始时间")
private LocalDateTime startTime;
@ApiModelProperty("任务更新时间")
private LocalDateTime updateTime;
@ApiModelProperty("用户ID")
private Long accountId;
}