liyong
5 天以前 be5783c8a7e13bbc76d33c95643d75779cce21db
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;
@@ -64,17 +38,5 @@
    @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;
}