package cc.mrbird.febs.mall.entity;
|
|
import cc.mrbird.febs.common.entity.BaseEntity;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
@Data
|
@TableName("clothes_type")
|
public class ClothesType extends BaseEntity {
|
/**
|
*
|
`name` varchar(100) DEFAULT NULL COMMENT '名称',
|
`image` varchar(200) DEFAULT NULL COMMENT '小图标',
|
`image_front` varchar(200) DEFAULT NULL COMMENT '正面',
|
`image_back` varchar(200) DEFAULT NULL COMMENT '反面',
|
`content` text COMMENT '描述',
|
`state` int(11) DEFAULT '0' COMMENT '是否上线 0-否 1-是',
|
`cloth_state` int(11) DEFAULT '0' COMMENT '是否允许选择布料 0-否 1-是',
|
`art_state` int(11) DEFAULT '0' COMMENT '是否允许选择工艺 0-否 1-是',
|
`pattern_state` int(11) DEFAULT '0' COMMENT '是否允许选择图案 0-否 1-是',
|
`location_state` int(11) DEFAULT '0' COMMENT '是否允许选择图案位置 0-否 1-是',
|
`size_state` int(11) DEFAULT '0' COMMENT '是否允许自定义尺码 0-否 1-是',
|
`order_num` int(11) DEFAULT NULL COMMENT '排序',
|
*/
|
|
private String name;
|
private String image;
|
private String imageFront;
|
private String imageBack;
|
private String content;
|
private Integer state;
|
private Integer clothState;
|
private Integer artState;
|
private Integer patternState;
|
private Integer locationState;
|
private Integer sizeState;
|
private Integer orderNum;
|
}
|