从统一接口获取pose transformation的生成记录
This commit is contained in:
@@ -30,7 +30,7 @@ public class ModuleChooseVO {
|
||||
private CavasModuleChooseVO canvas;
|
||||
|
||||
private List<CollectionSketchVO> boundingBox;
|
||||
// private moodBoardModuleChooseVO poseTransfer;
|
||||
private List<PoseTransformationVO> poseTransfer;
|
||||
// private moodBoardModuleChooseVO patternMaking3D;
|
||||
private SketchReconstructionVO deReconstruction;
|
||||
}
|
||||
|
||||
@@ -13,6 +13,8 @@ public class PoseTransformationVO {
|
||||
|
||||
private String taskId;
|
||||
|
||||
private String productImage;
|
||||
|
||||
private String gifUrl;
|
||||
|
||||
private String videoUrl;
|
||||
@@ -22,4 +24,14 @@ public class PoseTransformationVO {
|
||||
private byte isLiked;
|
||||
|
||||
private String status;
|
||||
|
||||
public PoseTransformationVO(Long id, String taskId, String gifUrl, String videoUrl, String firstFrameUrl, byte isLiked, String status) {
|
||||
this.id = id;
|
||||
this.taskId = taskId;
|
||||
this.gifUrl = gifUrl;
|
||||
this.videoUrl = videoUrl;
|
||||
this.firstFrameUrl = firstFrameUrl;
|
||||
this.isLiked = isLiked;
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user