package com.mzl.flower.entity.payment; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import com.mzl.flower.base.BaseEntity; import lombok.Data; import java.math.BigDecimal; @Data @TableName("t_order_settlement_detail") public class OrderSettlementDetail extends BaseEntity { @TableField("settlement_id") private String settlementId;//结算单id @TableField("order_id") private String orderId;//订单id @TableField("order_item_id") private String orderItemId;//订单商品id @TableField("price") private BigDecimal price;//结算单价 @TableField("num") private Integer num;//数量 @TableField("total_amount") private BigDecimal totalAmount;//结算合计 @TableField("check_fee") private BigDecimal checkFee;//质检扣款 @TableField("lack_fee") private BigDecimal lackFee;//缺货扣款 @TableField("replace_fee") private BigDecimal replaceFee;//补货扣款 @TableField("station_fee") private BigDecimal stationFee;//集货站运费 @TableField("sales_fee") private BigDecimal salesFee;//售后理赔 }