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_pattern")
|
public class ClothesPattern extends BaseEntity {
|
/**
|
*
|
`name` varchar(100) DEFAULT NULL COMMENT '名称',
|
`image` varchar(200) DEFAULT NULL COMMENT '小图标',
|
`content` text COMMENT '简介',
|
`price` decimal(20,2) DEFAULT NULL COMMENT '价格',
|
`order_num` int(11) DEFAULT NULL COMMENT '排序',
|
`type` int(11) DEFAULT NULL COMMENT '类型 1-仅文字 2-仅图案 3-文字加图案',
|
*/
|
private String code;
|
private String name;
|
private String image;
|
private String content;
|
private BigDecimal price;
|
private Integer orderNum;
|
private Integer type;
|
}
|