Administrator
2025-07-22 48e926f7f767a6d65cab2b52a057d345c2ee7e0e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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;
}