BUGFIX: format;
This commit is contained in:
@@ -19,5 +19,5 @@ public class DesignAttributeRetrievalDTO {
|
||||
private List<String> libraryUrls = Lists.newArrayList();
|
||||
|
||||
@ApiModelProperty("sysFile图片 数组")
|
||||
private List<String> sysFileUrlS= Lists.newArrayList();
|
||||
private List<String> sysFileUrlS = Lists.newArrayList();
|
||||
}
|
||||
|
||||
@@ -57,4 +57,4 @@ public class DesignCollectionDTO {
|
||||
|
||||
private String processId;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@ import javax.validation.constraints.NotBlank;
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class DesignSingleItemDTO {
|
||||
public class DesignSingleItemDTO {
|
||||
|
||||
@NotBlank(message = "id cannot be empty!")
|
||||
@ApiModelProperty("切换图片对应的id")
|
||||
|
||||
@@ -17,7 +17,7 @@ public class EmailSendDTO {
|
||||
@NotBlank(message = "operationType cannot be empty")
|
||||
@ApiModelProperty("操作类型 LOGIN 注册 FORGET_PWD 忘记密码 BIND_MAILBOX 绑定邮箱")
|
||||
private String operationType;
|
||||
|
||||
|
||||
@ApiModelProperty("异常ip")
|
||||
private String ip;
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ public class LibraryDeleteDTO {
|
||||
|
||||
|
||||
@NotEmpty(message = "libraryIds cannot be empty!")
|
||||
@Size(max = 100,min = 1)
|
||||
@Size(max = 100, min = 1)
|
||||
@ApiModelProperty("libraryId数组")
|
||||
private List<Long> libraryIds;
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ import java.util.List;
|
||||
public class LibraryUpdateDTO {
|
||||
|
||||
@NotEmpty(message = "libraryIds cannot be empty!")
|
||||
@Size(max = 100,min = 1)
|
||||
@Size(max = 100, min = 1)
|
||||
@ApiModelProperty("libraryId数组")
|
||||
private List<Long> libraryIds;
|
||||
|
||||
|
||||
@@ -15,6 +15,6 @@ import lombok.EqualsAndHashCode;
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class WorkspaceDTO extends PageQueryBaseVo {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
}
|
||||
|
||||
@@ -11,7 +11,8 @@ public class BizJson implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public BizJson() {}
|
||||
public BizJson() {
|
||||
}
|
||||
|
||||
public BizJson(String name, String key, String value) {
|
||||
this.name = name;
|
||||
|
||||
@@ -13,8 +13,7 @@ public enum FemalePosition implements IEnumDisplay {
|
||||
BLOUSE("Blouse"),
|
||||
DRESS("Dress"),
|
||||
TROUSERS("Trousers"),
|
||||
SKIRT("Skirt")
|
||||
;
|
||||
SKIRT("Skirt");
|
||||
|
||||
private String value;
|
||||
|
||||
|
||||
@@ -11,8 +11,7 @@ public enum MalePosition implements IEnumDisplay {
|
||||
|
||||
TOPS("Tops"),
|
||||
BOTTOMS("Bottoms"),
|
||||
OUTWEAR("Outwear")
|
||||
;
|
||||
OUTWEAR("Outwear");
|
||||
|
||||
private String value;
|
||||
|
||||
|
||||
@@ -10,8 +10,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
|
||||
public enum MannequinType implements IEnumDisplay {
|
||||
|
||||
SYSTEM("System"),
|
||||
LIBRARY("Library")
|
||||
;
|
||||
LIBRARY("Library");
|
||||
|
||||
private String value;
|
||||
|
||||
|
||||
@@ -11,8 +11,7 @@ public enum ModelType implements IEnumDisplay {
|
||||
|
||||
SYSTEM("System"),
|
||||
|
||||
LIBRARY("Library")
|
||||
;
|
||||
LIBRARY("Library");
|
||||
|
||||
private String value;
|
||||
|
||||
|
||||
@@ -41,5 +41,4 @@ public class DesignLibraryModelPointVO implements Serializable {
|
||||
private String templateUrl;
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -22,10 +22,10 @@ public class DesignSinglePrint {
|
||||
private List<Double> location;
|
||||
|
||||
@ApiModelProperty("印花大小")
|
||||
@Range(max = 1,message = "印花缩放值需用大于等于0小于等于1的数表示")
|
||||
@Range(max = 1, message = "印花缩放值需用大于等于0小于等于1的数表示")
|
||||
private Double scale;
|
||||
|
||||
@Range(min = -360,max = 360,message = "印花旋转角度范围为-360° ~ 360°")
|
||||
@Range(min = -360, max = 360, message = "印花旋转角度范围为-360° ~ 360°")
|
||||
@ApiModelProperty("印花角度")
|
||||
private Double angle;
|
||||
|
||||
|
||||
@@ -6,6 +6,7 @@ import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@AllArgsConstructor
|
||||
@Data
|
||||
@ApiModel("HistoryUpdateVO-响应")
|
||||
|
||||
@@ -46,5 +46,5 @@ public class LibraryUpdateVo implements Serializable {
|
||||
|
||||
@ApiModelProperty("校验md5")
|
||||
private Boolean checkMd5;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -28,7 +28,6 @@ public class LibraryVo implements Serializable {
|
||||
|
||||
/**
|
||||
* 用户ID
|
||||
*
|
||||
*/
|
||||
private Long accountId;
|
||||
/**
|
||||
|
||||
@@ -6,6 +6,7 @@ import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
|
||||
@NoArgsConstructor
|
||||
@Data
|
||||
@ApiModel("潘通-响应")
|
||||
|
||||
@@ -30,7 +30,6 @@ public class SysFileVO implements Serializable {
|
||||
|
||||
/**
|
||||
* md5值
|
||||
*
|
||||
*/
|
||||
private String md5;
|
||||
|
||||
|
||||
@@ -16,6 +16,6 @@ import io.swagger.annotations.ApiModel;
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ApiModel(value = "TDesignPythonOutfitDetailVO对象", description = "design item详情表")
|
||||
public class TDesignPythonOutfitDetailVO extends TDesignPythonOutfitDetail {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
}
|
||||
|
||||
@@ -17,6 +17,6 @@ import io.swagger.annotations.ApiModel;
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ApiModel(value = "TDesignPythonOutfitVO对象", description = "design item表 存对应design的8张图片")
|
||||
public class TDesignPythonOutfitVO extends TDesignPythonOutfit {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
}
|
||||
|
||||
@@ -31,13 +31,13 @@ public class ValidateElementVO {
|
||||
//用于存储generate 生成collection
|
||||
List<CollectionElement> generateCollectionElements = Lists.newArrayList();
|
||||
//存储template打点数据
|
||||
DesignLibraryModelPointVO designLibraryModelPoint =null;
|
||||
DesignLibraryModelPointVO designLibraryModelPoint = null;
|
||||
//存储本次design已经使用的上衣和下衣的的MD5list 去重用
|
||||
List<String> hasUseMd5List = Lists.newArrayList() ;
|
||||
List<String> hasUseMd5List = Lists.newArrayList();
|
||||
//存储本次design已经使用的系统上衣下衣的id
|
||||
List<Long> sysFileIds = Lists.newArrayList() ;
|
||||
List<Long> sysFileIds = Lists.newArrayList();
|
||||
//存储本次design剩余的没有Pin的print
|
||||
Long noPinPrintNum ;
|
||||
Long noPinPrintNum;
|
||||
//透传print参数用,存储本地Print对象
|
||||
DesignPythonItemPrint designPythonItemPrint;
|
||||
//透传print参数用
|
||||
|
||||
Reference in New Issue
Block a user