package cn.iocoder.yudao.module.mes.controller.admin.pro.batch.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 = "管理后台 - MES 生产批次分页 Request VO") @Data @EqualsAndHashCode(callSuper = true) @ToString(callSuper = true) public class MesProBatchPageReqVO extends PageParam { @Schema(description = "批次号", example = "PC20260818L01NY001") private String code; @Schema(description = "品种(产品物料)编号", example = "1") private Long itemId; @Schema(description = "产线编号", example = "1") private Long lineId; @Schema(description = "产线编码", example = "L01") private String lineCode; @Schema(description = "产线名称", example = "包装一线") private String lineName; @Schema(description = "责任人用户编号", example = "1") private Long ownerUserId; @Schema(description = "批次状态(字典 mes_pro_batch_status)", example = "20") private Integer status; @Schema(description = "生产日期") @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) private LocalDateTime[] produceDate; @Schema(description = "创建时间") @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) private LocalDateTime[] createTime; }