TASK: 结果返回parentId;
This commit is contained in:
@@ -29,6 +29,7 @@ public class AccountLoginDTO {
|
||||
@ApiModelProperty("邮箱验证码")
|
||||
private String emailVerifyCode;
|
||||
|
||||
@ApiModelProperty("组织名")
|
||||
private String organizationName;
|
||||
|
||||
}
|
||||
|
||||
@@ -1,14 +1,16 @@
|
||||
package com.ai.da.model.dto;
|
||||
|
||||
import com.ai.da.mapper.primary.entity.CloudTask;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class CloudTaskDTO extends CloudTask {
|
||||
@ApiModelProperty("toProduct/relight入参")
|
||||
private ToProductImageDTO toProductImage;
|
||||
|
||||
@ApiModelProperty("posetransfer入参")
|
||||
private List<PoseTransformBatchDTO> poseTransform;
|
||||
|
||||
|
||||
|
||||
@@ -1,13 +1,17 @@
|
||||
package com.ai.da.model.dto;
|
||||
|
||||
import com.ai.da.mapper.primary.entity.CollectionSort;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class CollectionSortDTO{
|
||||
|
||||
@ApiModelProperty("userLikeGroupId")
|
||||
private Long userLikeGroupId;
|
||||
|
||||
@ApiModelProperty("排序数组")
|
||||
List<CollectionSort> userLikeSortList;
|
||||
}
|
||||
|
||||
@@ -29,6 +29,7 @@ public class DesignCollectionDTO {
|
||||
@ApiModelProperty("手稿板图片id 数组")
|
||||
private List<CollectionSketchDTO> sketchBoards;
|
||||
|
||||
@ApiModelProperty("模特 数组")
|
||||
private List<MannequinDTO> mannequins;
|
||||
|
||||
@NotNull(message = "systemScale.cannot.be.empty")
|
||||
@@ -65,14 +66,19 @@ public class DesignCollectionDTO {
|
||||
@ApiModelProperty("python端design进程ID")
|
||||
private String processId;
|
||||
|
||||
@ApiModelProperty("moodboard 位置信息")
|
||||
private String moodboardPosition;
|
||||
|
||||
@ApiModelProperty("获取结果标识数组")
|
||||
private List<String> requestIdList;
|
||||
|
||||
@ApiModelProperty("design数量")
|
||||
private Integer designNum;
|
||||
|
||||
@ApiModelProperty("品牌ID")
|
||||
private Long brandId;
|
||||
|
||||
@ApiModelProperty("品牌占比")
|
||||
private Double brandScale;
|
||||
|
||||
}
|
||||
|
||||
@@ -23,5 +23,6 @@ public class DisDesignLikeDTO {
|
||||
@ApiModelProperty("本地时区,比如 'Asia/Tokyo' 东京时间 , 'Asia/Shanghai' 北京时间 由js本地获取")
|
||||
private String timeZone;
|
||||
|
||||
@ApiModelProperty("项目ID")
|
||||
private Long projectId;
|
||||
}
|
||||
|
||||
@@ -4,6 +4,7 @@ import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class PoseTransformBatchDTO {
|
||||
|
||||
private String productImage;
|
||||
|
||||
private Integer poseId;
|
||||
|
||||
Reference in New Issue
Block a user