| package com.mzl.flower.entity.system; | 
|   | 
| import com.baomidou.mybatisplus.annotation.TableField; | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import com.mzl.flower.base.BaseEntity; | 
| import lombok.Data; | 
|   | 
| @Data | 
| @TableName("t_code_type") | 
| public class CodeType extends BaseEntity { | 
|   | 
|     @TableField("name") | 
|     private String name; | 
|   | 
|     @TableField("code") | 
|     private String code; | 
|   | 
|     @TableField("description") | 
|     private String description; | 
|   | 
| } |