| | |
| | | @ToString(callSuper = true) |
| | | public class ErpSaleOrderPageReqVO extends PageParam { |
| | | |
| | | /** |
| | | * 出库状态 - 无 |
| | | */ |
| | | public static final Integer OUT_STATUS_NONE = 0; |
| | | /** |
| | | * 出库状态 - 部分 |
| | | */ |
| | | public static final Integer OUT_STATUS_PART = 1; |
| | | /** |
| | | * 出库状态 - 全部 |
| | | */ |
| | | public static final Integer OUT_STATUS_ALL = 2; |
| | | |
| | | /** |
| | | * 退货状态 - 无 |
| | | */ |
| | | public static final Integer RETURN_STATUS_NONE = 0; |
| | | /** |
| | | * 退货状态 - 部分 |
| | | */ |
| | | public static final Integer RETURN_STATUS_PART = 1; |
| | | /** |
| | | * 退货状态 - 全部 |
| | | */ |
| | | public static final Integer RETURN_STATUS_ALL = 2; |
| | | |
| | | @Schema(description = "销售单编号", example = "XS001") |
| | | private String no; |
| | | |
| | |
| | | |
| | | @Schema(description = "产品编号", example = "1") |
| | | private Long productId; |
| | | |
| | | @Schema(description = "出库状态", example = "2") |
| | | private Integer outStatus; |
| | | |
| | | @Schema(description = "退货状态", example = "2") |
| | | private Integer returnStatus; |
| | | |
| | | @Schema(description = "是否可出库", example = "true") |
| | | private Boolean outEnable; |
| | | |
| | | @Schema(description = "是否可退货", example = "true") |
| | | private Boolean returnEnable; |
| | | |
| | | } |