| 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; | 
|   | 
| import java.math.BigDecimal; | 
|   | 
| @Data | 
| @TableName("t_flower_markup_sp_cg") | 
| public class FlowerMarkupSpCg extends BaseAutoPhyEntity { | 
|   | 
|     @TableField("category_id") | 
|     private Long categoryId;//分类id | 
|   | 
|     @TableField("level_a") | 
|     private BigDecimal levelA;//A级金额 | 
|   | 
|     @TableField("level_b") | 
|     private BigDecimal levelB;//B级金额 | 
|   | 
|     @TableField("level_c") | 
|     private BigDecimal levelC;//C级金额 | 
|   | 
|     @TableField("level_d") | 
|     private BigDecimal levelD;//D级金额 | 
|   | 
|     @TableField("level_e") | 
|     private BigDecimal levelE;//E级金额 | 
|   | 
|     @TableField("level_o") | 
|     private BigDecimal levelO;//O级金额 | 
|   | 
|     @TableField("partner_id") | 
|     private Long partnerId;//合伙人id | 
|   | 
| } |