Administrator
2025-07-14 17cea8fe652d1566e856e168d528a1af628e2140
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
package cc.mrbird.febs.mall.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@TableName("clothes_size")
public class ClothesSize  extends BaseEntity {
    /**
     *
     `name` varchar(100) DEFAULT NULL COMMENT '名称',
     `image` varchar(200) DEFAULT NULL COMMENT '小图标',
     `content` text COMMENT '简介',
     `price` decimal(20,2) DEFAULT NULL COMMENT '价格',
     `type` int(11) DEFAULT NULL COMMENT '尺码类型 1-衣服 2-裤子',
     `order_num` int(11) DEFAULT NULL COMMENT '排序',
     */
    private String code;
    private String name;
    private String image;
    private String content;
    private BigDecimal price;
    private Integer type;
    private Integer orderNum;
}