|
|
@@ -0,0 +1,602 @@
|
|
|
+package com.uas.console.donate.model;
|
|
|
+
|
|
|
+
|
|
|
+import javax.persistence.*;
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+@Entity
|
|
|
+@Table(name="donate$organization")
|
|
|
+public class Org implements Serializable{
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @Id
|
|
|
+ @GeneratedValue(strategy= GenerationType.IDENTITY)
|
|
|
+ @Column(name = "org_id")
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 注册编号
|
|
|
+ */
|
|
|
+ @Column(name="org_code")
|
|
|
+ private String code;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ *优软云账号
|
|
|
+ */
|
|
|
+ @Column(name="org_uuid")
|
|
|
+ private Long uuid;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 提交人姓名
|
|
|
+ */
|
|
|
+ @Column(name="org_person")
|
|
|
+ private String person;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 提交人时间
|
|
|
+ */
|
|
|
+ @Column(name = "org_submit")
|
|
|
+ private Date submitTime;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 审核状态(0:待审核1:批准2:驳回)
|
|
|
+ */
|
|
|
+ @Column(name="org_status")
|
|
|
+ private Integer status;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 驳回理由
|
|
|
+ */
|
|
|
+ @Column(name="org_refuse")
|
|
|
+ private String refuse;
|
|
|
+
|
|
|
+ /**
|
|
|
+ *机构类别(1:公募 2:非公募)
|
|
|
+ */
|
|
|
+ @Column(name = "org_type")
|
|
|
+ private Integer type;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 机构全称
|
|
|
+ */
|
|
|
+ @Column(name="org_name")
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 机构电话
|
|
|
+ */
|
|
|
+ @Column(name="org_tel")
|
|
|
+ private String telphone;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 所属省
|
|
|
+ */
|
|
|
+ @Column(name = "org_province")
|
|
|
+ private String province;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 所属市
|
|
|
+ */
|
|
|
+ @Column(name="org_city")
|
|
|
+ private String city;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 详细地址
|
|
|
+ */
|
|
|
+ @Column(name="org_address")
|
|
|
+ private String address;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 机构登记性质
|
|
|
+ */
|
|
|
+ @Column(name = "org_reg_type")
|
|
|
+ private String regType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主要领域:
|
|
|
+ 1.疾病援助2.扶贫救灾
|
|
|
+ 3.教育助学 4.环境,动物保护
|
|
|
+ 5.其他
|
|
|
+ */
|
|
|
+ @Column(name = "org_major")
|
|
|
+ private Integer majorArea;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 年募捐额
|
|
|
+ */
|
|
|
+ @Column(name="org_year_donations")
|
|
|
+ private Long yearDonationAmount;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 全职人数
|
|
|
+ */
|
|
|
+ @Column(name="org_full_times")
|
|
|
+ private Long fullTimePopulation;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 兼职人数
|
|
|
+ */
|
|
|
+ @Column(name="org_part_times")
|
|
|
+ private Long partTimePopulation;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 志愿者人数
|
|
|
+ */
|
|
|
+ @Column(name="org_voluntaries")
|
|
|
+ private Long voluntaryPopulation;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 成立日期
|
|
|
+ */
|
|
|
+ @Column(name="org_create_time")
|
|
|
+ private Date createTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 官网地址
|
|
|
+ */
|
|
|
+ @Column(name="org_website")
|
|
|
+ private String website;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 机构简介
|
|
|
+ */
|
|
|
+ @Column(name="org_summary")
|
|
|
+ private String summary;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 负责人姓名
|
|
|
+ */
|
|
|
+ @Column(name="org_manager_name")
|
|
|
+ private String managerName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 负责人身份证号
|
|
|
+ */
|
|
|
+ @Column(name="org_manager_idcard")
|
|
|
+ private String managerIdcard;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 负责人办公电话
|
|
|
+ */
|
|
|
+ @Column(name="org_manager_oph")
|
|
|
+ private String managerOph;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 负责人个人手机
|
|
|
+ */
|
|
|
+ @Column(name="org_manager_mobile")
|
|
|
+ private Long managerMobile;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 联系人姓名
|
|
|
+ */
|
|
|
+ @Column(name="org_contact_name")
|
|
|
+ private String contactName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 联系人身份证号
|
|
|
+ */
|
|
|
+ @Column(name="org_contact_idcard")
|
|
|
+ private String contactIdcard;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 联系人电话
|
|
|
+ */
|
|
|
+ @Column(name="org_contact_tel")
|
|
|
+ private Long contactTel;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 联系人电子邮箱
|
|
|
+ */
|
|
|
+ @Column(name ="org_contact_email")
|
|
|
+ private String contactEmail;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 银行卡开户名称
|
|
|
+ */
|
|
|
+ @Column(name="org_bank_card_name")
|
|
|
+ private String bankCardName;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 开户银行
|
|
|
+ */
|
|
|
+ @Column(name="org_card_of_bank")
|
|
|
+ private String cardOfBank;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 银行卡支行信息
|
|
|
+ */
|
|
|
+ @Column(name="org_branch_message")
|
|
|
+ private String branchMessage;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 银行卡账号
|
|
|
+ */
|
|
|
+ @Column(name="org_bank_account")
|
|
|
+ private Long account;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 机构logo
|
|
|
+ */
|
|
|
+ @Column(name = "org_logo")
|
|
|
+ private String logo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 机构证书
|
|
|
+ */
|
|
|
+ @Column(name = "org_certificate")
|
|
|
+ private String certificate;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ *慈善组织法人登记证书
|
|
|
+ */
|
|
|
+ @Column(name = "org_person_certificate")
|
|
|
+ private String personCertificate;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ *慈善组织公开募捐资格证书
|
|
|
+ */
|
|
|
+ @Column(name = "org_donate_certificate")
|
|
|
+ private String donateCertificate;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 法人身份证
|
|
|
+ */
|
|
|
+ @Column(name="org_legal_idcard")
|
|
|
+ private String legalIdCard;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 合作商户资料
|
|
|
+ */
|
|
|
+ @Column(name = "org_partner_material")
|
|
|
+ private String material;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 结算银行账号证明
|
|
|
+ */
|
|
|
+ @Column(name = "org_bank_certify")
|
|
|
+ private String certify;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCode() {
|
|
|
+ return code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCode(String code) {
|
|
|
+ this.code = code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getUuid() {
|
|
|
+ return uuid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUuid(Long uuid) {
|
|
|
+ this.uuid = uuid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPerson() {
|
|
|
+ return person;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPerson(String person) {
|
|
|
+ this.person = person;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getSubmitTime() {
|
|
|
+ return submitTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubmitTime(Date submitTime) {
|
|
|
+ this.submitTime = submitTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getStatus() {
|
|
|
+ return status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStatus(Integer status) {
|
|
|
+ this.status = status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRefuse() {
|
|
|
+ return refuse;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRefuse(String refuse) {
|
|
|
+ this.refuse = refuse;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPersonCertificate() {
|
|
|
+ return personCertificate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPersonCertificate(String personCertificate) {
|
|
|
+ this.personCertificate = personCertificate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDonateCertificate() {
|
|
|
+ return donateCertificate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDonateCertificate(String donateCertificate) {
|
|
|
+ this.donateCertificate = donateCertificate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLegalIdCard() {
|
|
|
+ return legalIdCard;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLegalIdCard(String legalIdCard) {
|
|
|
+ this.legalIdCard = legalIdCard;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getType() {
|
|
|
+ return type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setType(Integer type) {
|
|
|
+ this.type = type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTelphone() {
|
|
|
+ return telphone;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTelphone(String telphone) {
|
|
|
+ this.telphone = telphone;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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 getAddress() {
|
|
|
+ return address;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAddress(String address) {
|
|
|
+ this.address = address;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRegType() {
|
|
|
+ return regType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRegType(String regType) {
|
|
|
+ this.regType = regType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getMajorArea() {
|
|
|
+ return majorArea;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMajorArea(Integer majorArea) {
|
|
|
+ this.majorArea = majorArea;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getYearDonationAmount() {
|
|
|
+ return yearDonationAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setYearDonationAmount(Long yearDonationAmount) {
|
|
|
+ this.yearDonationAmount = yearDonationAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getFullTimePopulation() {
|
|
|
+ return fullTimePopulation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFullTimePopulation(Long fullTimePopulation) {
|
|
|
+ this.fullTimePopulation = fullTimePopulation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getPartTimePopulation() {
|
|
|
+ return partTimePopulation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPartTimePopulation(Long partTimePopulation) {
|
|
|
+ this.partTimePopulation = partTimePopulation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getVoluntaryPopulation() {
|
|
|
+ return voluntaryPopulation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setVoluntaryPopulation(Long voluntaryPopulation) {
|
|
|
+ this.voluntaryPopulation = voluntaryPopulation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getCreateTime() {
|
|
|
+ return createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateTime(Date createTime) {
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWebsite() {
|
|
|
+ return website;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWebsite(String website) {
|
|
|
+ this.website = website;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSummary() {
|
|
|
+ return summary;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSummary(String summary) {
|
|
|
+ this.summary = summary;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getManagerName() {
|
|
|
+ return managerName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setManagerName(String managerName) {
|
|
|
+ this.managerName = managerName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getManagerIdcard() {
|
|
|
+ return managerIdcard;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setManagerIdcard(String managerIdcard) {
|
|
|
+ this.managerIdcard = managerIdcard;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getManagerOph() {
|
|
|
+ return managerOph;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setManagerOph(String managerOph) {
|
|
|
+ this.managerOph = managerOph;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getManagerMobile() {
|
|
|
+ return managerMobile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setManagerMobile(Long managerMobile) {
|
|
|
+ this.managerMobile = managerMobile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getContactName() {
|
|
|
+ return contactName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setContactName(String contactName) {
|
|
|
+ this.contactName = contactName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getContactIdcard() {
|
|
|
+ return contactIdcard;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setContactIdcard(String contactIdcard) {
|
|
|
+ this.contactIdcard = contactIdcard;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getContactTel() {
|
|
|
+ return contactTel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setContactTel(Long contactTel) {
|
|
|
+ this.contactTel = contactTel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getContactEmail() {
|
|
|
+ return contactEmail;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setContactEmail(String contactEmail) {
|
|
|
+ this.contactEmail = contactEmail;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBankCardName() {
|
|
|
+ return bankCardName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBankCardName(String bankCardName) {
|
|
|
+ this.bankCardName = bankCardName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCardOfBank() {
|
|
|
+ return cardOfBank;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCardOfBank(String cardOfBank) {
|
|
|
+ this.cardOfBank = cardOfBank;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBranchMessage() {
|
|
|
+ return branchMessage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBranchMessage(String branchMessage) {
|
|
|
+ this.branchMessage = branchMessage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getAccount() {
|
|
|
+ return account;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAccount(Long account) {
|
|
|
+ this.account = account;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLogo() {
|
|
|
+ return logo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLogo(String logo) {
|
|
|
+ this.logo = logo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCertificate() {
|
|
|
+ return certificate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCertificate(String certificate) {
|
|
|
+ this.certificate = certificate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMaterial() {
|
|
|
+ return material;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMaterial(String material) {
|
|
|
+ this.material = material;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCertify() {
|
|
|
+ return certify;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCertify(String certify) {
|
|
|
+ this.certify = certify;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|