package cn.iocoder.yudao.module.qcreport.controller.admin.template.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
@Schema(description = "管理后台 - 智能质检报告模板 Response VO")
|
@Data
|
public class QcReportTemplateRespVO {
|
|
@Schema(description = "模板编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
private Long id;
|
|
@Schema(description = "模板编码", requiredMode = Schema.RequiredMode.REQUIRED, example = "QC_REPORT_IQC_A4")
|
private String templateCode;
|
|
@Schema(description = "模板名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "来料检验报告")
|
private String templateName;
|
|
@Schema(description = "所属行业", example = "manufacturing")
|
private String industry;
|
|
@Schema(description = "报告类型", example = "IQC")
|
private String reportType;
|
|
@Schema(description = "纸张尺寸", example = "A4")
|
private String pageSize;
|
|
@Schema(description = "纸张方向", example = "portrait")
|
private String orientation;
|
|
@Schema(description = "模板状态:0启用 1停用", example = "0")
|
private Integer status;
|
|
@Schema(description = "当前版本号", example = "v1.0")
|
private String currentVersion;
|
|
@Schema(description = "模板描述", example = "用于来料检验单的 A4 报告模板")
|
private String description;
|
|
@Schema(description = "创建人", example = "1")
|
private String creator;
|
|
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
|
private LocalDateTime createTime;
|
|
@Schema(description = "更新时间")
|
private LocalDateTime updateTime;
|
|
}
|