| package com.mzl.flower.entity.flower; | 
|   | 
| import com.baomidou.mybatisplus.annotation.TableField; | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import com.mzl.flower.base.BaseAutoPhyEntity; | 
| import lombok.Data; | 
|   | 
| @Data | 
| @TableName("t_flower_tag") | 
| public class FlowerTag extends BaseAutoPhyEntity { | 
|   | 
|     @TableField("name") | 
|     private String name;//名称 | 
|   | 
|     @TableField("remarks") | 
|     private String remarks;//说明 | 
|   | 
| } |