liyong
4 天以前 d3e57f662fc00214c9d1b1caa9a4dd542a9d2e1e
yudao-module-erp/src/main/java/cn/iocoder/yudao/module/erp/controller/admin/sale/vo/order/ErpSaleOrderPageReqVO.java
@@ -17,32 +17,6 @@
@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;
@@ -59,22 +33,19 @@
    @Schema(description = "销售状态", example = "2")
    private Integer status;
    @Schema(description = "出库状态", example = "3")
    private Integer outStatus;
    @Schema(description = "生产状态", example = "0")
    private Integer productionStatus;
    @Schema(description = "是否需要生产", example = "1")
    private Integer needProduction;
    @Schema(description = "创建者")
    private String creator;
    @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;
}