package cn.iocoder.yudao.module.qcreport.controller.admin.instance.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 QcReportInstancePageReqVO extends PageParam {
|
|
@Schema(description = "模板编号", example = "5")
|
private Long templateId;
|
|
@Schema(description = "报告编号(模糊匹配)", example = "QR20260918")
|
private String reportNo;
|
|
@Schema(description = "业务单据类型", example = "mes_qc_oqc")
|
private String businessType;
|
|
@Schema(description = "业务单据编号", example = "1024")
|
private String businessId;
|
|
@Schema(description = "报告状态:0生成中 1生成成功 2生成失败", example = "1")
|
private Integer status;
|
|
@Schema(description = "创建时间")
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
private LocalDateTime[] createTime;
|
|
}
|