BUGFIX: format;
This commit is contained in:
@@ -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