|
|
@@ -1,303 +0,0 @@
|
|
|
-package com.uas.sso.entity;
|
|
|
-
|
|
|
-import javax.persistence.*;
|
|
|
-import java.io.Serializable;
|
|
|
-import java.sql.Timestamp;
|
|
|
-
|
|
|
-/**
|
|
|
- * @author wangmh
|
|
|
- * @create 2018-01-16 16:03
|
|
|
- * @desc 更换管理员申述
|
|
|
- **/
|
|
|
-@Entity
|
|
|
-@Table(name = "sso$appeal$admin")
|
|
|
-public class ChangeAdminAppeal implements Serializable {
|
|
|
-
|
|
|
- /**
|
|
|
- *
|
|
|
- */
|
|
|
- private static final long serialVersionUID = 1L;
|
|
|
-
|
|
|
- /**
|
|
|
- * 主键
|
|
|
- */
|
|
|
- @Id
|
|
|
- @Column(name = "_id")
|
|
|
- @SequenceGenerator(name = "sso$appeal$admin_gen", sequenceName = "sso$appeal$admin_seq", allocationSize = 1)
|
|
|
- @GeneratedValue(strategy = GenerationType.IDENTITY, generator = "sso$appeal$admin_gen")
|
|
|
- private Long id;
|
|
|
-
|
|
|
- /**
|
|
|
- * 新管理员手机号
|
|
|
- */
|
|
|
- @Column(name = "mobile")
|
|
|
- private String mobile;
|
|
|
-
|
|
|
- /**
|
|
|
- * 企业名称
|
|
|
- */
|
|
|
- @Column(name = "space_name")
|
|
|
- private String spaceName;
|
|
|
-
|
|
|
- /**
|
|
|
- * 企业营业执照号
|
|
|
- */
|
|
|
- @Column(name = "business_code")
|
|
|
- private String businessCode;
|
|
|
-
|
|
|
- /**
|
|
|
- * 企业营业执照
|
|
|
- */
|
|
|
- @Column(name = "business_code_image")
|
|
|
- private String businessCodeImage;
|
|
|
-
|
|
|
- /**
|
|
|
- * 法定代表人
|
|
|
- */
|
|
|
- @Column(name = "corporation")
|
|
|
- private String corporation;
|
|
|
-
|
|
|
- /**
|
|
|
- * 注册地址
|
|
|
- */
|
|
|
- @Column(name = "reg_address")
|
|
|
- private String regAddress;
|
|
|
-
|
|
|
- /**
|
|
|
- * 注册地址所在省份、州、直辖市、行政区
|
|
|
- */
|
|
|
- @Column(name = "reg_province")
|
|
|
- private String province;
|
|
|
-
|
|
|
- /**
|
|
|
- * 注册地址所在城市
|
|
|
- */
|
|
|
- @Column(name = "reg_city")
|
|
|
- private String city;
|
|
|
-
|
|
|
- /**
|
|
|
- * 注册地址所在区域
|
|
|
- */
|
|
|
- @Column(name = "reg_district")
|
|
|
- private String district;
|
|
|
-
|
|
|
- /**
|
|
|
- * 注册地址所在街道
|
|
|
- */
|
|
|
- @Column(name = "reg_street")
|
|
|
- private String street;
|
|
|
- /**
|
|
|
- * 申述说明
|
|
|
- */
|
|
|
- @Column(name = "description", nullable = false, length = 2000)
|
|
|
- private String description;
|
|
|
-
|
|
|
- /**
|
|
|
- * 申请人uu号
|
|
|
- */
|
|
|
- @Column(name = "submitter_uu", nullable = false)
|
|
|
- private Long submitterUU;
|
|
|
-
|
|
|
- /**
|
|
|
- * 联系人
|
|
|
- */
|
|
|
- @Column(name = "contact_name", nullable = false)
|
|
|
- private String contactName;
|
|
|
-
|
|
|
- /**
|
|
|
- * 联系电话
|
|
|
- */
|
|
|
- @Column(name = "contact_tel", nullable = false)
|
|
|
- private String contactTel;
|
|
|
-
|
|
|
- /**
|
|
|
- * 联系邮箱
|
|
|
- */
|
|
|
- @Column(name = "contact_email", nullable = false)
|
|
|
- private String contactEmail;
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 提交日期
|
|
|
- */
|
|
|
- @Column(name = "submit_date")
|
|
|
- private Timestamp submitDate;
|
|
|
-
|
|
|
- /**
|
|
|
- * 审核人
|
|
|
- */
|
|
|
- @Column(name = "auditor")
|
|
|
- private String auditor;
|
|
|
-
|
|
|
- /**
|
|
|
- * 审核日期
|
|
|
- */
|
|
|
- @Column(name = "audit_date")
|
|
|
- private Timestamp auditDate;
|
|
|
-
|
|
|
- /**
|
|
|
- * 审核状态(Status枚举)
|
|
|
- */
|
|
|
- @Column(name = "status", nullable = false)
|
|
|
- private short status;
|
|
|
-
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public String getMobile() {
|
|
|
- return mobile;
|
|
|
- }
|
|
|
-
|
|
|
- public void setMobile(String mobile) {
|
|
|
- this.mobile = mobile;
|
|
|
- }
|
|
|
-
|
|
|
- public String getSpaceName() {
|
|
|
- return spaceName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSpaceName(String spaceName) {
|
|
|
- this.spaceName = spaceName;
|
|
|
- }
|
|
|
-
|
|
|
- public String getBusinessCode() {
|
|
|
- return businessCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setBusinessCode(String businessCode) {
|
|
|
- this.businessCode = businessCode;
|
|
|
- }
|
|
|
-
|
|
|
- public String getBusinessCodeImage() {
|
|
|
- return businessCodeImage;
|
|
|
- }
|
|
|
-
|
|
|
- public void setBusinessCodeImage(String businessCodeImage) {
|
|
|
- this.businessCodeImage = businessCodeImage;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCorporation() {
|
|
|
- return corporation;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCorporation(String corporation) {
|
|
|
- this.corporation = corporation;
|
|
|
- }
|
|
|
-
|
|
|
- public String getRegAddress() {
|
|
|
- return regAddress;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRegAddress(String regAddress) {
|
|
|
- this.regAddress = regAddress;
|
|
|
- }
|
|
|
-
|
|
|
- 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 getDescription() {
|
|
|
- return description;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDescription(String description) {
|
|
|
- this.description = description;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getSubmitterUU() {
|
|
|
- return submitterUU;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSubmitterUU(Long submitterUU) {
|
|
|
- this.submitterUU = submitterUU;
|
|
|
- }
|
|
|
-
|
|
|
- public String getContactName() {
|
|
|
- return contactName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setContactName(String contactName) {
|
|
|
- this.contactName = contactName;
|
|
|
- }
|
|
|
-
|
|
|
- public String getContactTel() {
|
|
|
- return contactTel;
|
|
|
- }
|
|
|
-
|
|
|
- public void setContactTel(String contactTel) {
|
|
|
- this.contactTel = contactTel;
|
|
|
- }
|
|
|
-
|
|
|
- public String getContactEmail() {
|
|
|
- return contactEmail;
|
|
|
- }
|
|
|
-
|
|
|
- public void setContactEmail(String contactEmail) {
|
|
|
- this.contactEmail = contactEmail;
|
|
|
- }
|
|
|
-
|
|
|
- public Timestamp getSubmitDate() {
|
|
|
- return submitDate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSubmitDate(Timestamp submitDate) {
|
|
|
- this.submitDate = submitDate;
|
|
|
- }
|
|
|
-
|
|
|
- public String getAuditor() {
|
|
|
- return auditor;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAuditor(String auditor) {
|
|
|
- this.auditor = auditor;
|
|
|
- }
|
|
|
-
|
|
|
- public Timestamp getAuditDate() {
|
|
|
- return auditDate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAuditDate(Timestamp auditDate) {
|
|
|
- this.auditDate = auditDate;
|
|
|
- }
|
|
|
-
|
|
|
- public short getStatus() {
|
|
|
- return status;
|
|
|
- }
|
|
|
-
|
|
|
- public void setStatus(short status) {
|
|
|
- this.status = status;
|
|
|
- }
|
|
|
-}
|