From 2fcd97552d16718cc7997629fd637a73a5a4483f Mon Sep 17 00:00:00 2001
From: 郑永安 <zyazyz250@sina.com>
Date: Mon, 19 Jun 2023 14:44:19 +0800
Subject: [PATCH] 删除
---
src/main/java/com/gk/firework/Domain/RegisterInfo.java | 469 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 469 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/gk/firework/Domain/RegisterInfo.java b/src/main/java/com/gk/firework/Domain/RegisterInfo.java
new file mode 100644
index 0000000..3f1bd0b
--- /dev/null
+++ b/src/main/java/com/gk/firework/Domain/RegisterInfo.java
@@ -0,0 +1,469 @@
+package com.gk.firework.Domain;
+
+import com.alibaba.fastjson.annotation.JSONField;
+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.fasterxml.jackson.annotation.JsonFormat;
+import org.springframework.format.annotation.DateTimeFormat;
+
+import javax.validation.constraints.NotBlank;
+import javax.validation.constraints.NotNull;
+import java.util.Date;
+
+@TableName("register")
+public class RegisterInfo {
+ @TableField(exist = false)
+ private static final long serialVersionUID = 1L;
+
+ /** id **/
+ @TableId(type = IdType.AUTO)
+ private Long id;
+
+ /** 企业名称 enterprisename **/
+ @NotBlank(message = "企业名称不能为空")
+ private String enterprisename;
+
+ /** 企业编号 enterprisenumber **/
+ @NotBlank(message = "企业编号不能为空")
+ private String enterprisenumber;
+
+ /** 密码 password **/
+ @NotBlank(message = "密码不能为空")
+ private String password;
+
+ /** 企业类型 type **/
+ @NotBlank(message = "未知的企业类型")
+ private String type;
+
+ /** 经营范围 businessrange **/
+ @NotBlank(message = "请填写经营范围")
+ private String businessrange;
+
+ /** 许可证开始时间 licensestart **/
+ @NotNull(message = "许可证开始时间不能为空")
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
+ @JsonFormat(pattern = "yyyy-MM-dd")
+ private Date licensestart;
+
+ /** 许可证结束时间 licenseend **/
+ @NotNull(message = "许可证结束时间不能为空")
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
+ @JsonFormat(pattern = "yyyy-MM-dd")
+ private Date licenseend;
+
+ /** 负责人 legalperson **/
+ @NotBlank(message = "负责人不能为空")
+ private String legalperson;
+
+ /** 负责人电话 legalpersonphone **/
+ @NotBlank(message = "负责人电话不能为空")
+ private String legalpersonphone;
+
+ /** 创建人 createdby **/
+ private String createdby;
+
+ /** 创建时间 createdat **/
+ private Date createdat;
+
+ /** 标记 flag **/
+ private Byte flag;
+
+ /** 是否删除 isdel **/
+ private Byte isdel;
+
+ /** 备注 remark **/
+ private String remark;
+
+ /** 是否发送短信通知(0.未发送短信;1.已发送短信) issms **/
+ private Byte issms;
+
+ /** 短信发送次数 smstimes **/
+ private Integer smstimes;
+
+ /** 短信通知发送时间 smsat **/
+ private Date smsat;
+
+ /** 审核人 reviewer **/
+ private String reviewer;
+
+ /** 审核结果(0:未审核;1.审核通过;2.审核驳回) reviewresult **/
+ private Byte reviewresult;
+
+ /** 审核时间 reviewat **/
+ private Date reviewat;
+
+ /** 审核意见 reviewcontent **/
+ private String reviewcontent;
+
+ /** 是否同意协议(0:否;1:是) isagreement **/
+ private Byte isagreement;
+
+ @NotBlank(message = "省份不能为空")
+ private String province;
+
+ @NotBlank(message = "市不能为空")
+ private String city;
+
+ @NotBlank(message = "区县不能为空")
+ private String district;
+
+ private String street;
+
+ private String committee;
+
+ @NotBlank(message = "详细地址不能为空")
+ private String address;
+
+ /** 负责人 **/
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
+ @JsonFormat(pattern = "yyyy-MM-dd")
+ private Date legalpersonstart;
+
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
+ @JsonFormat(pattern = "yyyy-MM-dd")
+ private Date legalpersonend;
+
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
+ @JsonFormat(pattern = "yyyy-MM-dd")
+ private Date qualificationstart;
+
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
+ @JsonFormat(pattern = "yyyy-MM-dd")
+ private Date qualificationend;
+
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
+ @JsonFormat(pattern = "yyyy-MM-dd")
+ private Date escortstart;
+
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
+ @JsonFormat(pattern = "yyyy-MM-dd")
+ private Date escortend;
+
+ /** id **/
+ public Long getId() {
+ return id;
+ }
+
+ /** id **/
+ public void setId(Long id) {
+ this.id = id;
+ }
+
+ /** 企业名称 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();
+ }
+
+ /** 密码 password **/
+ public String getPassword() {
+ return password;
+ }
+
+ /** 密码 password **/
+ public void setPassword(String password) {
+ this.password = password == null ? null : password.trim();
+ }
+
+ /** 企业类型 type **/
+ public String getType() {
+ return type;
+ }
+
+ /** 企业类型 type **/
+ public void setType(String type) {
+ this.type = type == null ? null : type.trim();
+ }
+
+ /** 经营范围 businessrange **/
+ public String getBusinessrange() {
+ return businessrange;
+ }
+
+ /** 经营范围 businessrange **/
+ public void setBusinessrange(String businessrange) {
+ this.businessrange = businessrange == null ? null : businessrange.trim();
+ }
+
+ /** 许可证开始时间 licensestart **/
+ public Date getLicensestart() {
+ return licensestart;
+ }
+
+ /** 许可证开始时间 licensestart **/
+ public void setLicensestart(Date licensestart) {
+ this.licensestart = licensestart;
+ }
+
+ /** 许可证结束时间 licenseend **/
+ public Date getLicenseend() {
+ return licenseend;
+ }
+
+ /** 许可证结束时间 licenseend **/
+ public void setLicenseend(Date licenseend) {
+ this.licenseend = licenseend;
+ }
+
+ /** 负责人 legalperson **/
+ public String getLegalperson() {
+ return legalperson;
+ }
+
+ /** 负责人 legalperson **/
+ public void setLegalperson(String legalperson) {
+ this.legalperson = legalperson == null ? null : legalperson.trim();
+ }
+
+ /** 负责人电话 legalpersonphone **/
+ public String getLegalpersonphone() {
+ return legalpersonphone;
+ }
+
+ /** 负责人电话 legalpersonphone **/
+ public void setLegalpersonphone(String legalpersonphone) {
+ this.legalpersonphone = legalpersonphone == null ? null : legalpersonphone.trim();
+ }
+
+ /** 创建人 createdby **/
+ public String getCreatedby() {
+ return createdby;
+ }
+
+ /** 创建人 createdby **/
+ public void setCreatedby(String createdby) {
+ this.createdby = createdby == null ? null : createdby.trim();
+ }
+
+ /** 创建时间 createdat **/
+ public Date getCreatedat() {
+ return createdat;
+ }
+
+ /** 创建时间 createdat **/
+ public void setCreatedat(Date createdat) {
+ this.createdat = createdat;
+ }
+
+ /** 标记 flag **/
+ public Byte getFlag() {
+ return flag;
+ }
+
+ /** 标记 flag **/
+ public void setFlag(Byte flag) {
+ this.flag = flag;
+ }
+
+ /** 是否删除 isdel **/
+ public Byte getIsdel() {
+ return isdel;
+ }
+
+ /** 是否删除 isdel **/
+ public void setIsdel(Byte isdel) {
+ this.isdel = isdel;
+ }
+
+ /** 备注 remark **/
+ public String getRemark() {
+ return remark;
+ }
+
+ /** 备注 remark **/
+ public void setRemark(String remark) {
+ this.remark = remark == null ? null : remark.trim();
+ }
+
+ /** 是否发送短信通知(0.未发送短信;1.已发送短信) issms **/
+ public Byte getIssms() {
+ return issms;
+ }
+
+ /** 是否发送短信通知(0.未发送短信;1.已发送短信) issms **/
+ public void setIssms(Byte issms) {
+ this.issms = issms;
+ }
+
+ /** 短信发送次数 smstimes **/
+ public Integer getSmstimes() {
+ return smstimes;
+ }
+
+ /** 短信发送次数 smstimes **/
+ public void setSmstimes(Integer smstimes) {
+ this.smstimes = smstimes;
+ }
+
+ /** 短信通知发送时间 smsat **/
+ public Date getSmsat() {
+ return smsat;
+ }
+
+ /** 短信通知发送时间 smsat **/
+ public void setSmsat(Date smsat) {
+ this.smsat = smsat;
+ }
+
+ /** 审核人 reviewer **/
+ public String getReviewer() {
+ return reviewer;
+ }
+
+ /** 审核人 reviewer **/
+ public void setReviewer(String reviewer) {
+ this.reviewer = reviewer == null ? null : reviewer.trim();
+ }
+
+ /** 审核结果(0:未审核;1.审核通过;2.审核驳回) reviewresult **/
+ public Byte getReviewresult() {
+ return reviewresult;
+ }
+
+ /** 审核结果(0:未审核;1.审核通过;2.审核驳回) reviewresult **/
+ public void setReviewresult(Byte reviewresult) {
+ this.reviewresult = reviewresult;
+ }
+
+ /** 审核时间 reviewat **/
+ public Date getReviewat() {
+ return reviewat;
+ }
+
+ /** 审核时间 reviewat **/
+ public void setReviewat(Date reviewat) {
+ this.reviewat = reviewat;
+ }
+
+ /** 审核意见 reviewcontent **/
+ public String getReviewcontent() {
+ return reviewcontent;
+ }
+
+ /** 审核意见 reviewcontent **/
+ public void setReviewcontent(String reviewcontent) {
+ this.reviewcontent = reviewcontent == null ? null : reviewcontent.trim();
+ }
+
+ /** 是否同意协议(0:否;1:是) isagreement **/
+ public Byte getIsagreement() {
+ return isagreement;
+ }
+
+ /** 是否同意协议(0:否;1:是) isagreement **/
+ public void setIsagreement(Byte isagreement) {
+ this.isagreement = isagreement;
+ }
+
+ public String getProvince() {
+ return province;
+ }
+
+ public void setProvince(String province) {
+ this.province = province;
+ }
+
+ public String getCity() {
+ return city;
+ }
+
+ public void setCity(String city) {
+ this.city = city;
+ }
+
+ public String getDistrict() {
+ return district;
+ }
+
+ public void setDistrict(String district) {
+ this.district = district;
+ }
+
+ public String getStreet() {
+ return street;
+ }
+
+ public void setStreet(String street) {
+ this.street = street;
+ }
+
+ public String getCommittee() {
+ return committee;
+ }
+
+ public void setCommittee(String committee) {
+ this.committee = committee;
+ }
+
+ public String getAddress() {
+ return address;
+ }
+
+ public void setAddress(String address) {
+ this.address = address;
+ }
+
+ public Date getLegalpersonstart() {
+ return legalpersonstart;
+ }
+
+ public void setLegalpersonstart(Date legalpersonstart) {
+ this.legalpersonstart = legalpersonstart;
+ }
+
+ public Date getLegalpersonend() {
+ return legalpersonend;
+ }
+
+ public void setLegalpersonend(Date legalpersonend) {
+ this.legalpersonend = legalpersonend;
+ }
+
+ public Date getQualificationstart() {
+ return qualificationstart;
+ }
+
+ public void setQualificationstart(Date qualificationstart) {
+ this.qualificationstart = qualificationstart;
+ }
+
+ public Date getQualificationend() {
+ return qualificationend;
+ }
+
+ public void setQualificationend(Date qualificationend) {
+ this.qualificationend = qualificationend;
+ }
+
+ public Date getEscortstart() {
+ return escortstart;
+ }
+
+ public void setEscortstart(Date escortstart) {
+ this.escortstart = escortstart;
+ }
+
+ public Date getEscortend() {
+ return escortend;
+ }
+
+ public void setEscortend(Date escortend) {
+ this.escortend = escortend;
+ }
+}
\ No newline at end of file
--
Gitblit v1.9.2