PoseTransformation-初版
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
package com.ai.da.mapper.primary;
|
||||
|
||||
import com.ai.da.common.config.mybatis.plus.CommonMapper;
|
||||
import com.ai.da.mapper.primary.entity.PoseTransformation;
|
||||
|
||||
public interface PoseTransformationMapper extends CommonMapper<PoseTransformation> {
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package com.ai.da.mapper.primary;
|
||||
|
||||
import com.ai.da.mapper.primary.entity.SketchReconstruction;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
public interface SketchReconstructionMapper extends BaseMapper<SketchReconstruction> {
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
package com.ai.da.mapper.primary.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@TableName("t_pose_transformation")
|
||||
@Data
|
||||
public class PoseTransformation extends BaseEntity {
|
||||
|
||||
private Long projectId;
|
||||
|
||||
private Long accountId;
|
||||
|
||||
private String uniqueId;
|
||||
|
||||
private String productImage;
|
||||
|
||||
private int poseId;
|
||||
|
||||
private String gifUrl;
|
||||
|
||||
private String videoUrl;
|
||||
// GIF第一帧截图
|
||||
private String imageUrl;
|
||||
|
||||
private byte isLiked;
|
||||
|
||||
private byte isDeleted;
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
package com.ai.da.mapper.primary.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Data
|
||||
@TableName("t_sketch_reconstruction")
|
||||
public class SketchReconstruction extends BaseEntity{
|
||||
|
||||
private Long projectId;
|
||||
|
||||
private Long elementId;
|
||||
|
||||
// upload、library、generate
|
||||
private String elementSource;
|
||||
|
||||
private String path;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user