From 2fcd97552d16718cc7997629fd637a73a5a4483f Mon Sep 17 00:00:00 2001 From: 郑永安 <zyazyz250@sina.com> Date: 星期一, 19 六月 2023 14:44:19 +0800 Subject: [PATCH] 删除 --- src/main/java/com/gk/firework/Domain/EnterpriseStandardization.java | 235 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 235 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/gk/firework/Domain/EnterpriseStandardization.java b/src/main/java/com/gk/firework/Domain/EnterpriseStandardization.java new file mode 100644 index 0000000..8814386 --- /dev/null +++ b/src/main/java/com/gk/firework/Domain/EnterpriseStandardization.java @@ -0,0 +1,235 @@ +package com.gk.firework.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 java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; +import java.util.List; + +@TableName("enterprisestandardization") +public class EnterpriseStandardization implements Serializable { + @TableField(exist = false) + private static final long serialVersionUID = 1L; + + /** 主键id id **/ + @TableId(type = IdType.AUTO) + private Long id; + + /** 标准化级别 level **/ + private String level; + + /** 证书编号 licensenumber **/ + private String licensenumber; + + /** 评审单位 reviewunit **/ + private String reviewunit; + + /** 发牌单位 licensingunit **/ + private String licensingunit; + + /** 考核得分 score **/ + private BigDecimal score; + + /** 有效开始时间 validstarttime **/ + private Date validstarttime; + + /** 有效结束时间 validendtime **/ + private Date validendtime; + + /** 创建时间 createtime **/ + private Date createtime; + + /** 创建人id createby **/ + private Long createby; + + /** 创建人name createbyname **/ + private String createbyname; + + /** 更新时间 updatetime **/ + private Date updatetime; + + /** 更新人id updateby **/ + private Long updateby; + + /** 更信人name updatebyname **/ + private String updatebyname; + + /** 企业id enterpriseid **/ + private Long enterpriseid; + + /** 有效标识 validflag **/ + private Boolean validflag; + + @TableField(exist = false) + private List<EnterpriseResource> enterpriseResources; + + /** 主键id id **/ + public Long getId() { + return id; + } + + /** 主键id id **/ + public void setId(Long id) { + this.id = id; + } + + /** 标准化级别 level **/ + public String getLevel() { + return level; + } + + /** 标准化级别 level **/ + public void setLevel(String level) { + this.level = level == null ? null : level.trim(); + } + + /** 证书编号 licensenumber **/ + public String getLicensenumber() { + return licensenumber; + } + + /** 证书编号 licensenumber **/ + public void setLicensenumber(String licensenumber) { + this.licensenumber = licensenumber == null ? null : licensenumber.trim(); + } + + /** 评审单位 reviewunit **/ + public String getReviewunit() { + return reviewunit; + } + + /** 评审单位 reviewunit **/ + public void setReviewunit(String reviewunit) { + this.reviewunit = reviewunit == null ? null : reviewunit.trim(); + } + + /** 发牌单位 licensingunit **/ + public String getLicensingunit() { + return licensingunit; + } + + /** 发牌单位 licensingunit **/ + public void setLicensingunit(String licensingunit) { + this.licensingunit = licensingunit == null ? null : licensingunit.trim(); + } + + /** 考核得分 score **/ + public BigDecimal getScore() { + return score; + } + + /** 考核得分 score **/ + public void setScore(BigDecimal score) { + this.score = score; + } + + /** 有效开始时间 validstarttime **/ + public Date getValidstarttime() { + return validstarttime; + } + + /** 有效开始时间 validstarttime **/ + public void setValidstarttime(Date validstarttime) { + this.validstarttime = validstarttime; + } + + /** 有效结束时间 validendtime **/ + public Date getValidendtime() { + return validendtime; + } + + /** 有效结束时间 validendtime **/ + public void setValidendtime(Date validendtime) { + this.validendtime = validendtime; + } + + /** 创建时间 createtime **/ + public Date getCreatetime() { + return createtime; + } + + /** 创建时间 createtime **/ + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + /** 创建人id createby **/ + public Long getCreateby() { + return createby; + } + + /** 创建人id createby **/ + public void setCreateby(Long createby) { + this.createby = createby; + } + + /** 创建人name createbyname **/ + public String getCreatebyname() { + return createbyname; + } + + /** 创建人name createbyname **/ + public void setCreatebyname(String createbyname) { + this.createbyname = createbyname == null ? null : createbyname.trim(); + } + + /** 更新时间 updatetime **/ + public Date getUpdatetime() { + return updatetime; + } + + /** 更新时间 updatetime **/ + public void setUpdatetime(Date updatetime) { + this.updatetime = updatetime; + } + + /** 更新人id updateby **/ + public Long getUpdateby() { + return updateby; + } + + /** 更新人id updateby **/ + public void setUpdateby(Long updateby) { + this.updateby = updateby; + } + + /** 更信人name updatebyname **/ + public String getUpdatebyname() { + return updatebyname; + } + + /** 更信人name updatebyname **/ + public void setUpdatebyname(String updatebyname) { + this.updatebyname = updatebyname == null ? null : updatebyname.trim(); + } + + public Long getEnterpriseid() { + return enterpriseid; + } + + public void setEnterpriseid(Long enterpriseid) { + this.enterpriseid = enterpriseid; + } + + /** 有效标识 validflag **/ + public Boolean getValidflag() { + return validflag; + } + + /** 有效标识 validflag **/ + public void setValidflag(Boolean validflag) { + this.validflag = validflag; + } + + public List<EnterpriseResource> getEnterpriseResources() { + return enterpriseResources; + } + + public void setEnterpriseResources(List<EnterpriseResource> enterpriseResources) { + this.enterpriseResources = enterpriseResources; + } +} -- Gitblit v1.9.2