first commit
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
package lingtao.net.entity;
|
||||
|
||||
import lingtao.net.enums.ClothingTagMater;
|
||||
import lingtao.net.enums.ClothingTagTechEnum;
|
||||
import lingtao.net.enums.ProductMembrane;
|
||||
import lingtao.net.enums.ProductSlice;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class ClothingTag {
|
||||
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 材质
|
||||
*/
|
||||
private ClothingTagMater material;
|
||||
|
||||
/**
|
||||
* 工艺
|
||||
*/
|
||||
private ClothingTagTechEnum technique;
|
||||
|
||||
/**
|
||||
* 覆膜
|
||||
*/
|
||||
private ProductMembrane productMembrane;
|
||||
/**
|
||||
* 切割
|
||||
*/
|
||||
private ProductSlice productSlice;
|
||||
|
||||
/**
|
||||
* 是否加棉绳
|
||||
*/
|
||||
private boolean isRope;
|
||||
|
||||
/**
|
||||
* 绳子公式
|
||||
*/
|
||||
private String ropeFormula;
|
||||
|
||||
/**
|
||||
* 计算方法
|
||||
*/
|
||||
private List<String> compute;
|
||||
|
||||
/**
|
||||
* 是否多面
|
||||
*/
|
||||
private boolean isMulti;
|
||||
|
||||
/**
|
||||
* 计算公式
|
||||
*/
|
||||
private String formula;
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package lingtao.net.entity;
|
||||
|
||||
public class SelfAdhesiveSticker {
|
||||
}
|
||||
Reference in New Issue
Block a user