designSingle 、getDetail 添加返回印花详细
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
package com.ai.da.mapper;
|
||||
|
||||
import com.ai.da.common.config.mybatis.plus.CommonMapper;
|
||||
import com.ai.da.mapper.entity.DesignItemDetailPrint;
|
||||
|
||||
|
||||
public interface DesignItemDetailPrintMapper extends CommonMapper<DesignItemDetailPrint> {
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
package com.ai.da.mapper.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Data
|
||||
@TableName("t_design_item_detail_print")
|
||||
public class DesignItemDetailPrint {
|
||||
|
||||
/**
|
||||
* ID
|
||||
*/
|
||||
@TableId(value = "id", type = IdType.AUTO)
|
||||
private Long id;
|
||||
/**
|
||||
* 关联t_design_item_detail表ID
|
||||
*/
|
||||
private Long designItemDetailId;
|
||||
/**
|
||||
* 印花路径
|
||||
*/
|
||||
private String path;
|
||||
/**
|
||||
* 印花位置
|
||||
*/
|
||||
private String position;
|
||||
/**
|
||||
* 印花缩放比例
|
||||
*/
|
||||
private Double scale;
|
||||
/**
|
||||
* 印花旋转角度
|
||||
*/
|
||||
private Double angle;
|
||||
/**
|
||||
* 印花优先级(多个印花)
|
||||
*/
|
||||
private Integer priority;
|
||||
/**
|
||||
* 选择single or overall 模式
|
||||
*/
|
||||
private String singleOrOverall;
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private LocalDateTime createDate;
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
private LocalDateTime updateDate;
|
||||
}
|
||||
Reference in New Issue
Block a user