| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @Data |
| | | public class ShippingInfoDto extends ShippingInfo { |
| | | |
| | | @ApiModelProperty(value = "库位") |
| | | @TableField(exist = false) |
| | | private String stockLocation; |
| | | |
| | | /** |
| | | * 审批人id列表 |
| | |
| | | @TableField(exist = false) |
| | | private List<CommonFile> commonFileList; |
| | | |
| | | /** |
| | | * 已发货数量 |
| | | */ |
| | | private BigDecimal shippingSuccessTotal = BigDecimal.ZERO; |
| | | |
| | | /** |
| | | * 待发货数量 |
| | | */ |
| | | private BigDecimal waitShippingTotal = BigDecimal.ZERO; |
| | | |
| | | /** |
| | | * 退货数量 |
| | | */ |
| | | private BigDecimal returnTotal = BigDecimal.ZERO; |
| | | |
| | | private String productCategory; |
| | | |
| | | private String specificationModel; |
| | | |
| | | } |