| | |
| | | @ApiModel(value = "ShippingInfoDetail对象", description = "发货明细表") |
| | | public class ShippingInfoDetail implements Serializable { |
| | | |
| | | @ApiModelProperty(value = "库位") |
| | | private String stockLocation; |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 退货数量 |
| | | */ |
| | | @TableField(exist = false) |
| | | private BigDecimal returnTotal = BigDecimal.ZERO; |
| | | |
| | | @TableField(exist = false) |
| | | private List<String> tempFileIds; |
| | |
| | | @ApiModelProperty("发货类型") |
| | | private String type; |
| | | |
| | | @ApiModelProperty("状态") |
| | | @ApiModelProperty("状态 已退货") |
| | | private String status; |
| | | |
| | | @ApiModelProperty("发货数量") |