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/AccessAssessApply.java | 336 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 336 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/gk/firework/Domain/AccessAssessApply.java b/src/main/java/com/gk/firework/Domain/AccessAssessApply.java new file mode 100644 index 0000000..e2a2df4 --- /dev/null +++ b/src/main/java/com/gk/firework/Domain/AccessAssessApply.java @@ -0,0 +1,336 @@ +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 AccessAssessApply implements Serializable { + private static final long serialVersionUID = 1L; + + /** 主键id id **/ + @TableId(type = IdType.AUTO) + private Long id; + + /** 类型(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; + + /** 申诉材料 path2 **/ + private String path2; + + /** 处罚原因 punishmentreason **/ + private String punishmentreason; + + /** 处罚措施(吊销或者停用一段时间) punishmentmeasure **/ + private AssessPunishment punishmentmeasure; + + /** 创建时间 createtime **/ + private Date createtime; + + /** 修改时间 modifytime **/ + private Date modifytime; + + /** 最后一次驳回的时间 lastrejecttime **/ + private Date lastrejecttime; + + private String lastrejectreason; + + private Date deadline; + + private String appealcontent; + + private Date appealtime; + + private AssessAppealStatus appealstatus; + + private String appealrejectreason; + + private String appealapprover; + + private Date appealapprovetime; + + @TableField(exist = false) + private MultipartFile file; + + private boolean validflag; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public AssessType getType() { + return type; + } + + public void setType(AssessType type) { + this.type = type; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code; + } + + public AssessApplyStatus getStatus() { + return status; + } + + public void setStatus(AssessApplyStatus status) { + this.status = status; + } + + public String getRequestor() { + return requestor; + } + + public void setRequestor(String requestor) { + this.requestor = requestor; + } + + public Long getRequestorid() { + return requestorid; + } + + public void setRequestorid(Long requestorid) { + this.requestorid = requestorid; + } + + public Date getSubmittime() { + return submittime; + } + + public void setSubmittime(Date submittime) { + this.submittime = submittime; + } + + public String getApprover() { + return approver; + } + + public void setApprover(String approver) { + this.approver = approver; + } + + public Date getApprovetime() { + return approvetime; + } + + public void setApprovetime(Date approvetime) { + this.approvetime = approvetime; + } + + public String getApprovenote() { + return approvenote; + } + + public void setApprovenote(String approvenote) { + this.approvenote = approvenote; + } + + public String getEnterprisename() { + return enterprisename; + } + + public void setEnterprisename(String enterprisename) { + this.enterprisename = enterprisename; + } + + public String getEnterprisenumber() { + return enterprisenumber; + } + + public void setEnterprisenumber(String enterprisenumber) { + this.enterprisenumber = enterprisenumber; + } + + public PunishStatus getPunishstatus() { + return punishstatus; + } + + public void setPunishstatus(PunishStatus punishstatus) { + this.punishstatus = punishstatus; + } + + public String getPath1() { + return path1; + } + + public void setPath1(String path1) { + this.path1 = path1; + } + + public String getPath2() { + return path2; + } + + public void setPath2(String path2) { + this.path2 = path2; + } + + public String getPunishmentreason() { + return punishmentreason; + } + + public void setPunishmentreason(String punishmentreason) { + this.punishmentreason = punishmentreason; + } + + public AssessPunishment getPunishmentmeasure() { + return punishmentmeasure; + } + + public void setPunishmentmeasure(AssessPunishment punishmentmeasure) { + this.punishmentmeasure = punishmentmeasure; + } + + public Date getCreatetime() { + return createtime; + } + + public void setCreatetime(Date createtime) { + this.createtime = createtime; + } + + public Date getModifytime() { + return modifytime; + } + + public void setModifytime(Date modifytime) { + this.modifytime = modifytime; + } + + public Date getLastrejecttime() { + return lastrejecttime; + } + + public void setLastrejecttime(Date lastrejecttime) { + this.lastrejecttime = lastrejecttime; + } + + public String getLastrejectreason() { + return lastrejectreason; + } + + public void setLastrejectreason(String lastrejectreason) { + this.lastrejectreason = lastrejectreason; + } + + public Date getDeadline() { + return deadline; + } + + public void setDeadline(Date deadline) { + this.deadline = deadline; + } + + public String getAppealcontent() { + return appealcontent; + } + + public void setAppealcontent(String appealcontent) { + this.appealcontent = appealcontent; + } + + public Date getAppealtime() { + return appealtime; + } + + public void setAppealtime(Date appealtime) { + this.appealtime = appealtime; + } + + public AssessAppealStatus getAppealstatus() { + return appealstatus; + } + + public void setAppealstatus(AssessAppealStatus appealstatus) { + this.appealstatus = appealstatus; + } + + 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 String getAppealrejectreason() { + return appealrejectreason; + } + + public void setAppealrejectreason(String appealrejectreason) { + this.appealrejectreason = appealrejectreason; + } + + public String getAppealapprover() { + return appealapprover; + } + + public void setAppealapprover(String appealapprover) { + this.appealapprover = appealapprover; + } + + public Date getAppealapprovetime() { + return appealapprovetime; + } + + public void setAppealapprovetime(Date appealapprovetime) { + this.appealapprovetime = appealapprovetime; + } +} -- Gitblit v1.9.2