| package cc.mrbird.febs.mall.entity; | 
|   | 
| import cc.mrbird.febs.common.entity.BaseEntity; | 
| import com.baomidou.mybatisplus.annotation.TableField; | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import lombok.Data; | 
|   | 
| @Data | 
| @TableName("mall_goods_category") | 
| public class MallGoodsCategory extends BaseEntity { | 
|   | 
|     private String name; | 
|   | 
|     private Long parentId; | 
|   | 
|     private String parentIds; | 
|   | 
|     @TableField(exist = false) | 
|     private String parentName; | 
|   | 
|     private Integer isRecommend; | 
|   | 
|     private String image; | 
|   | 
|     private Integer indexNum; | 
|   | 
| } |