From 59e91a4e9ddaf23cebb12993c774aa899ab22d16 Mon Sep 17 00:00:00 2001 From: 郑永安 <zyazyz250@sina.com> Date: 星期一, 19 六月 2023 14:22:45 +0800 Subject: [PATCH] 描述 --- src/main/java/com/gk/firework/Domain/AssessApply.java | 287 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 287 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/gk/firework/Domain/AssessApply.java b/src/main/java/com/gk/firework/Domain/AssessApply.java new file mode 100644 index 0000000..06a1098 --- /dev/null +++ b/src/main/java/com/gk/firework/Domain/AssessApply.java @@ -0,0 +1,287 @@ +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 com.gk.firework.Domain.Enum.*; +import org.springframework.web.multipart.MultipartFile; + +import java.io.Serializable; +import java.util.Date; + +@TableName("assessapply") +public class AssessApply implements Serializable { + + private static final long serialVersionUID = 1L; + + /** 主键id id **/ + @TableId(type = IdType.AUTO) + private Long id; + + /** 类型(1销售评定,2准入评定) type **/ + private AssessType type; + + /** 单子编号 code **/ + private String code; + + /** 单子状态(待提交,待审批,审批通过,驳回) status **/ + private AssessApplyStatus status; + + /** 提出人名称 requestor **/ + private String requestor; + + private Long requestorid; + + /** 单子提交时间 submittime **/ + private Date submittime; + + /** 审批人名称 approver **/ + private String approver; + + /** 审批时间 approvetime **/ + private Date approvetime; + + /** 审批备注 approvenote **/ + private String approvenote; + + /** 企业名 enterprisename **/ + private String enterprisename; + + /** 企业单位编号 enterprisenumber **/ + private String enterprisenumber; + + private PunishStatus punishstatus; + + /** 上传材料 path1 **/ + private String path1; + + /** 处罚原因 punishmentreason **/ + private String punishmentreason; + + /** 处罚措施(吊销或者停用一段时间) punishmentmeasure **/ + private AssessPunishment punishmentmeasure; + + /** 创建时间 createtime **/ + private Date createtime; + + /** 修改时间 modifytime **/ + private Date modifytime; + + /** 最后一次驳回的时间 lastrejecttime **/ + private Date lastrejecttime; + + private String lastrejectreason; + + + @TableField(exist = false) + private MultipartFile file; + + private boolean validflag; + + /** 主键id id **/ + public Long getId() { + return id; + } + + /** 主键id id **/ + public void setId(Long id) { + this.id = id; + } + + public AssessType getType() { + return type; + } + + public void setType(AssessType type) { + this.type = type; + } + + /** 单子编号 code **/ + public String getCode() { + return code; + } + + /** 单子编号 code **/ + public void setCode(String code) { + this.code = code == null ? null : code.trim(); + } + + public AssessApplyStatus getStatus() { + return status; + } + + public void setStatus(AssessApplyStatus status) { + this.status = status; + } + + /** 提出人名称 requestor **/ + public String getRequestor() { + return requestor; + } + + /** 提出人名称 requestor **/ + public void setRequestor(String requestor) { + this.requestor = requestor == null ? null : requestor.trim(); + } + + /** 单子提交时间 submittime **/ + public Date getSubmittime() { + return submittime; + } + + /** 单子提交时间 submittime **/ + public void setSubmittime(Date submittime) { + this.submittime = submittime; + } + + /** 审批人名称 approver **/ + public String getApprover() { + return approver; + } + + /** 审批人名称 approver **/ + public void setApprover(String approver) { + this.approver = approver == null ? null : approver.trim(); + } + + /** 审批时间 approvetime **/ + public Date getApprovetime() { + return approvetime; + } + + /** 审批时间 approvetime **/ + public void setApprovetime(Date approvetime) { + this.approvetime = approvetime; + } + + /** 审批备注 approvenote **/ + public String getApprovenote() { + return approvenote; + } + + /** 审批备注 approvenote **/ + public void setApprovenote(String approvenote) { + this.approvenote = approvenote == null ? null : approvenote.trim(); + } + + /** 企业名 enterprisename **/ + public String getEnterprisename() { + return enterprisename; + } + + /** 企业名 enterprisename **/ + public void setEnterprisename(String enterprisename) { + this.enterprisename = enterprisename == null ? null : enterprisename.trim(); + } + + /** 企业单位编号 enterprisenumber **/ + public String getEnterprisenumber() { + return enterprisenumber; + } + + /** 企业单位编号 enterprisenumber **/ + public void setEnterprisenumber(String enterprisenumber) { + this.enterprisenumber = enterprisenumber == null ? null : enterprisenumber.trim(); + } + + + public PunishStatus getPunishstatus() { + return punishstatus; + } + + public void setPunishstatus(PunishStatus punishstatus) { + this.punishstatus = punishstatus; + } + + /** 上传材料 path1 **/ + public String getPath1() { + return path1; + } + + /** 上传材料 path1 **/ + public void setPath1(String path1) { + this.path1 = path1 == null ? null : path1.trim(); + } + + /** 处罚原因 punishmentreason **/ + public String getPunishmentreason() { + return punishmentreason; + } + + /** 处罚原因 punishmentreason **/ + public void setPunishmentreason(String punishmentreason) { + this.punishmentreason = punishmentreason == null ? null : punishmentreason.trim(); + } + + public AssessPunishment getPunishmentmeasure() { + return punishmentmeasure; + } + + public void setPunishmentmeasure(AssessPunishment punishmentmeasure) { + this.punishmentmeasure = punishmentmeasure; + } + + /** 创建时间 createtime **/ + public Date getCreatetime() { + return createtime; + } + + /** 创建时间 createtime **/ + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + /** 修改时间 modifytime **/ + public Date getModifytime() { + return modifytime; + } + + /** 修改时间 modifytime **/ + public void setModifytime(Date modifytime) { + this.modifytime = modifytime; + } + + /** 最后一次驳回的时间 lastrejecttime **/ + public Date getLastrejecttime() { + return lastrejecttime; + } + + /** 最后一次驳回的时间 lastrejecttime **/ + public void setLastrejecttime(Date lastrejecttime) { + this.lastrejecttime = lastrejecttime; + } + + public MultipartFile getFile() { + return file; + } + + public void setFile(MultipartFile file) { + this.file = file; + } + + public boolean isValidflag() { + return validflag; + } + + public void setValidflag(boolean validflag) { + this.validflag = validflag; + } + + public Long getRequestorid() { + return requestorid; + } + + public void setRequestorid(Long requestorid) { + this.requestorid = requestorid; + } + + public String getLastrejectreason() { + return lastrejectreason; + } + + public void setLastrejectreason(String lastrejectreason) { + this.lastrejectreason = lastrejectreason; + } + +} -- Gitblit v1.9.2