10 小时以前 b29d86d9ed34fd890eb14cb7a75f6ae4f7148865
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cn.iocoder.yudao.module.mes.controller.admin.trace.integrity.vo;
 
import cn.iocoder.yudao.framework.common.pojo.PageParam;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
 
@Schema(description = "管理后台 - 数据完整性记录分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class MesTraceIntegrityRecordPageReqVO extends PageParam {
 
    @Schema(description = "业务类型:BATCH / SALES / SCAN", example = "BATCH")
    private String bizType;
 
    @Schema(description = "业务记录编号", example = "1")
    private Long bizId;
 
    @Schema(description = "业务编码", example = "PC20260901L001M001_001")
    private String bizCode;
 
}