From 8a3a1c0b838d3b532750dc7c69362c2f5b0e7132 Mon Sep 17 00:00:00 2001 From: heheng <475597332@qq.com> Date: 星期一, 18 八月 2025 10:35:59 +0800 Subject: [PATCH] 部分新功能 --- multi-system/src/main/java/com/gkhy/exam/system/domain/QualitySystemPlan.java | 81 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 81 insertions(+), 0 deletions(-) diff --git a/multi-system/src/main/java/com/gkhy/exam/system/domain/QualitySystemPlan.java b/multi-system/src/main/java/com/gkhy/exam/system/domain/QualitySystemPlan.java new file mode 100644 index 0000000..c000101 --- /dev/null +++ b/multi-system/src/main/java/com/gkhy/exam/system/domain/QualitySystemPlan.java @@ -0,0 +1,81 @@ +package com.gkhy.exam.system.domain; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Getter; +import lombok.Setter; + +import java.io.Serializable; +import java.time.LocalDateTime; +import java.util.List; + +@Setter +@Getter +@TableName("quality_system_plan") +@ApiModel(value = "qualitySystemPlan",description = "质量体系策划") +public class QualitySystemPlan implements Serializable { + + @ApiModelProperty("主键") + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + @ApiModelProperty(value = "企业ID") + @TableField("company_id") + private Integer companyId; + + @ApiModelProperty(value = "企业名称") + @TableField(exist = false) + private String companyName; + + @ApiModelProperty(value = "年份") + @TableField("year") + private String year; + + @ApiModelProperty(value = "编写") + @TableField("write_id") + private Integer writeId; + + @ApiModelProperty(value = "编写名称") + @TableField(exist = false) + private String writeName; + + @ApiModelProperty(value = "审核") + @TableField("check_id") + private Integer checkId; + + @ApiModelProperty(value = "审核名称") + @TableField(exist = false) + private String checkName; + + @ApiModelProperty(value = "批准") + @TableField("ratify_id") + private Integer ratifyId; + + @ApiModelProperty(value = "批转名称") + @TableField(exist = false) + private String ratifyName; + + @ApiModelProperty(value = "是否删除") + @TableField("del_flag") + private Integer delFlag; + + @TableField("create_by") + private String createBy; + + @TableField("create_time") + private LocalDateTime createTime; + + @TableField("update_by") + private String updateBy; + + @TableField("update_time") + private LocalDateTime updateTime; + + @TableField(exist = false) + private List<QualitySystemPlanMess> planMesses; + +} -- Gitblit v1.9.2