| package com.mzl.flower.dto.response.payment; | 
|   | 
| import com.mzl.flower.base.annotation.DictTrans; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
|   | 
| @Data | 
| public class OrderItemPlatformListDTO extends OrderItemListDTO { | 
|     @ApiModelProperty(value = "集货状态") | 
|     @DictTrans(target = "statusStr", codeType = "CHECK_OPERATE") | 
|     private String status; | 
|     private String statusStr; | 
|   | 
|     @ApiModelProperty(value = "供应商联系人") | 
|     private String supplierContact; | 
|   | 
|     @ApiModelProperty(value = "质检备注") | 
|     private String checkRemarks; | 
|   | 
|     @ApiModelProperty(value = "供应商价格") | 
|     private BigDecimal supplierPrice; | 
|   | 
|     @ApiModelProperty(value = "一次加价") | 
|     private BigDecimal markupOne; | 
|   | 
|     @ApiModelProperty(value = "二次加价") | 
|     private BigDecimal markupTwo; | 
|   | 
|     @ApiModelProperty(value = "合伙人加价") | 
|     private BigDecimal markupPartner; | 
|   | 
|     @ApiModelProperty(value = "退款金额") | 
|     private BigDecimal deductAmount; | 
|   | 
|     @ApiModelProperty(value = "补货数量") | 
|     private Integer replaceNum; | 
|     private String replaceStatus; | 
|   | 
|     @ApiModelProperty(value = "降级数量") | 
|     private Integer reduceNum; | 
|     private String reduceStatus; | 
|   | 
|     @ApiModelProperty(value = "缺货数量") | 
|     private Integer lackNum; | 
|     private String lackStatus; | 
|   | 
|     @ApiModelProperty(value = "异常未处理数量") | 
|     private Integer unProcessCount; | 
|   | 
|     @ApiModelProperty(value = "供应商缺货扣款") | 
|     private BigDecimal lackFeeSupplier; | 
|   | 
|     @ApiModelProperty(value = "供应商补货扣款") | 
|     private BigDecimal replaceFee; | 
|   | 
|     @ApiModelProperty(value = "供应商降级扣款") | 
|     private BigDecimal checkFee; | 
| } |