package com.mzl.flower.entity.transport; 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_transport_fee") public class TransportFee extends BaseAutoPhyEntity { @TableField("transport_id") private Long transportId;//物流id @TableField("first_weight") private Double firstWeight;//首重/Kg @TableField("added_weight") private Double addedWeight;//续重/Kg @TableField("first_weight_fee") private BigDecimal firstWeightFee;//默认起步价 @TableField("added_weight_fee") private BigDecimal addedWeightFee;//默认加价 }