| package com.mzl.flower.entity.flower; | 
|   | 
| import com.baomidou.mybatisplus.annotation.TableField; | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import com.mzl.flower.base.BaseAutoEntity; | 
| import com.mzl.flower.base.BaseAutoPhyEntity; | 
| import lombok.Data; | 
|   | 
| @Data | 
| @TableName("t_flower_zone") | 
| public class FlowerZone extends BaseAutoEntity { | 
|   | 
|     @TableField("name") | 
|     private String name;//名称 | 
|   | 
|     @TableField("bg_url") | 
|     private String bgUrl;//背景图 | 
|   | 
|     @TableField("status") | 
|     private String status;//状态 | 
|   | 
|     @TableField("seq") | 
|     private int seq; //排序 | 
| } |