TASK:collection sort;

This commit is contained in:
shahaibo
2025-06-02 16:31:17 +08:00
parent becdbf1891
commit 78341850e1
3 changed files with 15 additions and 0 deletions

View File

@@ -27,6 +27,9 @@ public class PoseTransformationVO implements AllCollectionVO{
private String collectionType;
private String resultType;
private Integer sort;
private Long userLikeSortId;
private String relationType;
public PoseTransformationVO(Long id, String taskId, String gifUrl, String videoUrl, String firstFrameUrl, byte isLiked, String status) {
this.id = id;

View File

@@ -7,4 +7,7 @@ import lombok.Data;
public class ToProductImageResultVO extends ToProductImageResult implements AllCollectionVO{
private String sourceUrl;
private String collectionType;
private Integer sort;
private Long userLikeSortId;
private String relationType;
}