package cn.iocoder.yudao.module.mes.controller.admin.pd.documentaudit.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import jakarta.validation.constraints.NotBlank;
|
import jakarta.validation.constraints.NotNull;
|
import java.time.LocalDateTime;
|
|
@Schema(description = "管理后台 - MES 资料审核新增/修改 Request VO")
|
@Data
|
public class MesPdDocumentAuditSaveReqVO {
|
|
@Schema(description = "编号", requiredMode = Schema.RequiredMode.NOT_REQUIRED, example = "1024")
|
private Long id;
|
|
@Schema(description = "审核单号", requiredMode = Schema.RequiredMode.REQUIRED, example = "AUD2024001")
|
private String auditNo;
|
|
@Schema(description = "资料ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
private Long documentId;
|
|
@Schema(description = "资料名称", example = "产品设计图")
|
private String documentName;
|
|
@Schema(description = "资料版本", example = "V1.0")
|
private String documentVersion;
|
|
@Schema(description = "审核人", example = "1")
|
private Long reviewer;
|
|
@Schema(description = "审核状态", example = "0")
|
private Integer auditStatus;
|
|
@Schema(description = "审核时间")
|
private LocalDateTime auditTime;
|
|
@Schema(description = "备注", example = "测试备注")
|
private String remark;
|
|
}
|