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_pl") public class FlowerMarkupPl extends BaseAutoPhyEntity { @TableField("lower_price") private BigDecimal lowerPrice;//下限 @TableField("upper_price") private BigDecimal upperPrice;//上限 @TableField("fee") private BigDecimal fee;//金额 }