| | |
| | | package com.mzl.flower.dto.response.payment; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.mzl.flower.base.AbstractTransDTO; |
| | | import com.mzl.flower.base.annotation.DictTrans; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | @Data |
| | | public class OrderItemListDTO extends AbstractTransDTO { |
| | | private String id; |
| | | |
| | | private String orderId; |
| | | |
| | | private Long stationId;//集货站id |
| | | private String stationName; |
| | |
| | | |
| | | @ApiModelProperty(value = "真实成交价格/每扎") |
| | | private BigDecimal realPrice; |
| | | |
| | | @ApiModelProperty(value = "补货数量") |
| | | private Integer replaceNum; |
| | | |
| | | @ApiModelProperty(value = "降级数量") |
| | | private Integer reduceNum; |
| | | |
| | | @ApiModelProperty(value = "缺货数量") |
| | | private Integer lackNum; |
| | | } |