package cn.iocoder.yudao.module.qcreport.controller.admin.template.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 QcReportTemplatePageReqVO extends PageParam {
|
|
@Schema(description = "模板编码", example = "QC_REPORT_IQC")
|
private String templateCode;
|
|
@Schema(description = "模板名称", example = "来料检验报告")
|
private String templateName;
|
|
@Schema(description = "所属行业", example = "manufacturing")
|
private String industry;
|
|
@Schema(description = "报告类型", example = "IQC")
|
private String reportType;
|
|
@Schema(description = "模板状态:0启用 1停用", example = "0")
|
private Integer status;
|
|
@Schema(description = "当前版本号", example = "v1.0")
|
private String currentVersion;
|
|
@Schema(description = "创建人", example = "1")
|
private String creator;
|
|
@Schema(description = "创建时间")
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
private LocalDateTime[] createTime;
|
|
}
|