package cn.iocoder.yudao.module.mes.controller.admin.trace.crossregion.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;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.time.LocalDateTime;
|
|
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
|
@Schema(description = "管理后台 - 窜货预警分页 Request VO")
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@ToString(callSuper = true)
|
public class MesTraceCrossRegionWarningPageReqVO extends PageParam {
|
|
@Schema(description = "状态:10 待处理 / 20 已处理 / 30 误报", example = "10")
|
private Integer status;
|
|
@Schema(description = "预警类型:CROSS_PROVINCE / CROSS_CITY", example = "CROSS_PROVINCE")
|
private String warningType;
|
|
@Schema(description = "批次编号")
|
private Long batchId;
|
|
@Schema(description = "批次号", example = "PC20260901L001M001_001")
|
private String batchCode;
|
|
@Schema(description = "袋码", example = "BAG-00000001")
|
private String bagCode;
|
|
@Schema(description = "经销商编号")
|
private Long clientId;
|
|
@Schema(description = "经销商名称", example = "华东区域经销商")
|
private String clientName;
|
|
@Schema(description = "预警产生时间范围")
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
private LocalDateTime[] eventTime;
|
|
}
|