| | |
| | | @TableName("sales_ledger_product") |
| | | @Data |
| | | public class SalesLedgerProduct implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ApiModelProperty(value = "库位") |
| | | @TableField(exist = false) |
| | | private String stockLocation; |
| | | |
| | | /** |
| | | * 产品信息主键 |
| | |
| | | @TableField(exist = false) |
| | | private String shippingCarNumber; |
| | | |
| | | @ApiModelProperty("快递公司") |
| | | @TableField(exist = false) |
| | | private String expressCompany; |
| | | |
| | | @ApiModelProperty("快递单号") |
| | | @TableField(exist = false) |
| | | private String expressNumber; |
| | | |
| | | /** |
| | | * 发货日期 |
| | | */ |
| | |
| | | |
| | | @TableField(exist = false) |
| | | private Integer hasSufficientStock; |
| | | |
| | | @ApiModelProperty(value = "发货数量") |
| | | @TableField(exist = false) |
| | | private BigDecimal shippingNum; |
| | | |
| | | @ApiModelProperty(value = "退货数量") |
| | | @TableField(exist = false) |
| | | private BigDecimal returnNum; |
| | | } |