2026-06-24 f4bd1f3c89d906131495a0aca5aaf82966378510
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package cn.iocoder.yudao.module.wms.controller.admin.order.movement.vo.order;
 
import cn.iocoder.yudao.framework.common.pojo.PageParam;
import cn.iocoder.yudao.framework.common.validation.InEnum;
import cn.iocoder.yudao.module.wms.enums.order.WmsOrderStatusEnum;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
 
@Schema(description = "管理后台 - WMS 移库单分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class WmsMovementOrderPageReqVO extends PageParam {
 
    @Schema(description = "移库单号", example = "YK202605110001")
    private String no;
 
    @Schema(description = "单据状态", example = "0")
    @InEnum(WmsOrderStatusEnum.class)
    private Integer status;
 
    @Schema(description = "来源仓库编号", example = "1024")
    private Long sourceWarehouseId;
 
    @Schema(description = "目标仓库编号", example = "2048")
    private Long targetWarehouseId;
 
    @Schema(description = "单据日期")
    @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
    private LocalDateTime[] orderTime;
 
    @Schema(description = "最小数量", example = "1.00")
    private BigDecimal totalQuantityMin;
 
    @Schema(description = "最大数量", example = "100.00")
    private BigDecimal totalQuantityMax;
 
    @Schema(description = "最小总金额", example = "1.00")
    private BigDecimal totalPriceMin;
 
    @Schema(description = "最大总金额", example = "1000.00")
    private BigDecimal totalPriceMax;
 
    @Schema(description = "创建用户", example = "1")
    private String creator;
 
    @Schema(description = "更新用户", example = "1")
    private String updater;
 
    @Schema(description = "创建时间")
    @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
    private LocalDateTime[] createTime;
 
    @Schema(description = "更新时间")
    @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
    private LocalDateTime[] updateTime;
 
}