| 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; | 
| import java.time.LocalDate; | 
|   | 
| @Data | 
| @TableName("t_flower_supplier_sale_num") | 
| public class FlowerSupplierSaleNum extends BaseAutoPhyEntity { | 
|   | 
|     @TableField("supplier_id") | 
|     private Long supplierId;//供应商id | 
|   | 
|     @TableField("`year_month`") | 
|     private String yearMonth;//年月(yyyy-MM) | 
|   | 
|     @TableField("sale_num") | 
|     private Integer saleNum;//销售数量 | 
|   | 
|     @TableField("service_fee_rate") | 
|     private Double serviceFeeRate; | 
| } |