| package com.mzl.flower.entity.point; | 
|   | 
| import com.baomidou.mybatisplus.annotation.TableField; | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import com.mzl.flower.base.BaseAutoEntity; | 
| import lombok.Data; | 
|   | 
| @Data | 
| @TableName("t_point_goods") | 
| public class PointGoods extends BaseAutoEntity { | 
|   | 
|     @TableField("name") | 
|     private String name;//商品名称 | 
|   | 
|     @TableField("description") | 
|     private String description;//商品描述 | 
|   | 
|     @TableField("stock") | 
|     private Integer stock;//库存 | 
|   | 
|     @TableField("cover") | 
|     private String cover;//封面图 | 
|   | 
|     @TableField("pictures") | 
|     private String pictures;//商品图片 | 
|   | 
|     @TableField("point") | 
|     private Integer point;//兑换积分 | 
|   | 
|     @TableField("status") | 
|     private String status;//状态 | 
|   | 
| } |