修改 design single功能

This commit is contained in:
xupei
2023-09-14 12:58:49 +08:00
parent 165449084b
commit cf771a5b77
31 changed files with 687 additions and 102 deletions

View File

@@ -66,4 +66,16 @@ public class SysFile implements Serializable {
* 更新时间
*/
private Date updateDate;
public SysFile() {
}
public SysFile(String level1Type, String level2Type, String name, String md5, String url,Date createDate) {
this.level1Type = level1Type;
this.level2Type = level2Type;
this.name = name;
this.md5 = md5;
this.url = url;
this.createDate = createDate;
}
}

View File

@@ -30,6 +30,8 @@ public class TDesignPythonOutfit implements Serializable {
@ApiModelProperty(value = "ID")
@TableId(value = "id", type = IdType.AUTO)
private Long id;
private Long designItemId;
/**
* 关联的design ID
*/

View File

@@ -50,6 +50,9 @@ public class TDesignPythonOutfitDetail implements Serializable {
*/
@ApiModelProperty(value = "图层")
private String imageCategory;
@ApiModelProperty(value = "图层大小")
private String imageSize;
/**
* 对应的图片的绝对路径
*/