TASK:1.修改affiliate状态 2.添加系统sketch到个人library 3.视频生成新增生成模型 4.获取所有pose,从过去gif改为获取video

This commit is contained in:
2025-11-13 11:40:37 +08:00
parent e5eecbfe8d
commit 8750ea355a
23 changed files with 311 additions and 48 deletions

View File

@@ -30,4 +30,6 @@ public class Affiliate extends BaseEntity{
private String link;
private String promotionMethod;
private Integer isDeleted;
}

View File

@@ -97,4 +97,16 @@ public class Library implements Serializable {
this.md5 = md5;
this.createDate = createDate;
}
public Library(Long accountId, String level1Type, String level2Type, String level3Type, String ageGroup, String name, String url, String md5, Date createDate) {
this.accountId = accountId;
this.level1Type = level1Type;
this.level2Type = level2Type;
this.level3Type = level3Type;
this.ageGroup = ageGroup;
this.name = name;
this.url = url;
this.md5 = md5;
this.createDate = createDate;
}
}

View File

@@ -20,6 +20,8 @@ public class PoseTransformation extends BaseEntity {
private String productImage;
private String lastFrameProductImage;
private int poseId;
private String gifUrl;
@@ -37,6 +39,8 @@ public class PoseTransformation extends BaseEntity {
private String taskStatus;
private String prompt;
public PoseTransformation() {
}