| package com.mzl.flower.dto.response.payment; | 
|   | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import com.mzl.flower.base.AbstractTransDTO; | 
| import com.mzl.flower.base.annotation.DictTrans; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
| import org.springframework.format.annotation.DateTimeFormat; | 
|   | 
| import java.math.BigDecimal; | 
| import java.time.LocalDateTime; | 
|   | 
| @Data | 
| public class DeliveryOrderItemSettlementDTO extends AbstractTransDTO { | 
|     @ApiModelProperty(value = "订单商品id") | 
|     private String orderItemId; | 
|   | 
|     @ApiModelProperty(value = "商品名称") | 
|     private String flowerName; | 
|   | 
|     @ApiModelProperty(value = "商品等级") | 
|     @DictTrans(target = "flowerLevelStr", codeType = "FLOWER_LEVEL") | 
|     private String flowerLevel; | 
|     private String flowerLevelStr; | 
|   | 
|     @ApiModelProperty(value = "数量") | 
|     private Integer num; | 
|   | 
|     @ApiModelProperty(value = "价格") | 
|     private BigDecimal price; | 
|   | 
|     @ApiModelProperty(value = "总价") | 
|     private BigDecimal totalAmount; | 
|   | 
|     @ApiModelProperty(value = "结算状态;null表示还没有开始结算") | 
|     @DictTrans(target = "statusStr", codeType = "SETTLEMENT_STATUS") | 
|     private String status; | 
|     private String statusStr; | 
|   | 
|     @ApiModelProperty(value = "订单状态") | 
|     @DictTrans(target = "statusBackendStr", codeType = "ORDER_STATUS_BACKEND") | 
|     private String statusBackend; | 
|     private String statusBackendStr; | 
|   | 
|     @ApiModelProperty(value = "降级数量") | 
|     private Integer checkNum; | 
|   | 
|     @ApiModelProperty(value = "降级扣款") | 
|     private BigDecimal checkFee; | 
|   | 
|     @ApiModelProperty(value = "补货数量") | 
|     private Integer replaceNum; | 
|   | 
|     @ApiModelProperty(value = "补货扣款") | 
|     private BigDecimal replaceFee; | 
|   | 
|     @ApiModelProperty(value = "缺货数量") | 
|     private Integer lackNum; | 
|   | 
|     @ApiModelProperty(value = "缺货扣款") | 
|     private BigDecimal lackFee; | 
|   | 
|     @ApiModelProperty(value = "集货站运费") | 
|     private BigDecimal stationFee; | 
|   | 
|     @ApiModelProperty(value = "售后退款") | 
|     private BigDecimal salesFee; | 
|   | 
|     @ApiModelProperty(value = "售后数量") | 
|     private Integer salesNum; | 
|   | 
|     @ApiModelProperty(value = "服务费率") | 
|     private Double serviceFeeRate; | 
|   | 
|     @ApiModelProperty(value = "服务费") | 
|     private BigDecimal serviceFee; | 
|   | 
|     @ApiModelProperty(value = "收入") | 
|     private BigDecimal income; | 
|   | 
|     @ApiModelProperty(value = "下单时间") | 
|     private LocalDateTime orderTime; | 
|   | 
|     @ApiModelProperty(value = "收货日期") | 
|     @JsonFormat(pattern="yyyy-MM-dd" ,timezone="GMT+8") | 
|     @DateTimeFormat | 
|     private LocalDateTime receiveTime; | 
|   | 
|     @ApiModelProperty(value = "订单号") | 
|     private String orderNo; | 
| } |