123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- package com.bosshand.virgo.api.model;
- /**
- * 客商管理
- */
- public class Merchant {
- private long id;
- /**
- * 企业地址
- */
- private String address;
- /**
- * 经营范围
- */
- private String businessScope;
- /**
- * 企业规模
- */
- private String corporateScale;
- /**
- * 企业理念
- */
- private String corporatePhilosophy;
- /**
- * 企业文化
- */
- private String corporateCulture;
- /**
- * 联系方式
- */
- private String contactInformation;
- /**
- * 传真
- */
- private String fax;
- /**
- * 邮箱
- */
- private String email;
- /**
- * 组织id
- */
- private long organizationId;
- /**
- * 项目id
- */
- private long projectId;
- /**
- * 行业分类
- */
- private String industryType;
- /**
- * 企业名称
- */
- private String name;
- /**
- * 法人
- */
- private String legalPerson;
- /**
- * 成立日期
- */
- private String establishDate;
- /**
- * 营业期限
- */
- private String businessTerm;
- /**
- * 注册资本
- */
- private String registeredCapital;
- /**
- * 状态
- */
- private Integer status;
- /**
- * 自定义字段
- */
- private String data;
- /**
- * 房间ids
- */
- private String roomIds;
- /**
- * 入驻时间
- */
- private String entryTime;
- public long getId() {
- return id;
- }
- public void setId(long id) {
- this.id = id;
- }
- public String getAddress() {
- return address;
- }
- public void setAddress(String address) {
- this.address = address;
- }
- public String getBusinessScope() {
- return businessScope;
- }
- public void setBusinessScope(String businessScope) {
- this.businessScope = businessScope;
- }
- public String getCorporateScale() {
- return corporateScale;
- }
- public void setCorporateScale(String corporateScale) {
- this.corporateScale = corporateScale;
- }
- public String getCorporatePhilosophy() {
- return corporatePhilosophy;
- }
- public void setCorporatePhilosophy(String corporatePhilosophy) {
- this.corporatePhilosophy = corporatePhilosophy;
- }
- public String getCorporateCulture() {
- return corporateCulture;
- }
- public void setCorporateCulture(String corporateCulture) {
- this.corporateCulture = corporateCulture;
- }
- public String getContactInformation() {
- return contactInformation;
- }
- public void setContactInformation(String contactInformation) {
- this.contactInformation = contactInformation;
- }
- public String getFax() {
- return fax;
- }
- public void setFax(String fax) {
- this.fax = fax;
- }
- public String getEmail() {
- return email;
- }
- public void setEmail(String email) {
- this.email = email;
- }
- public long getOrganizationId() {
- return organizationId;
- }
- public void setOrganizationId(long organizationId) {
- this.organizationId = organizationId;
- }
- public long getProjectId() {
- return projectId;
- }
- public void setProjectId(long projectId) {
- this.projectId = projectId;
- }
- public String getIndustryType() {
- return industryType;
- }
- public void setIndustryType(String industryType) {
- this.industryType = industryType;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getLegalPerson() {
- return legalPerson;
- }
- public void setLegalPerson(String legalPerson) {
- this.legalPerson = legalPerson;
- }
- public String getEstablishDate() {
- return establishDate;
- }
- public void setEstablishDate(String establishDate) {
- this.establishDate = establishDate;
- }
- public String getBusinessTerm() {
- return businessTerm;
- }
- public void setBusinessTerm(String businessTerm) {
- this.businessTerm = businessTerm;
- }
- public String getRegisteredCapital() {
- return registeredCapital;
- }
- public void setRegisteredCapital(String registeredCapital) {
- this.registeredCapital = registeredCapital;
- }
- public Integer getStatus() {
- return status;
- }
- public void setStatus(Integer status) {
- this.status = status;
- }
- public String getData() {
- return data;
- }
- public void setData(String data) {
- this.data = data;
- }
- public String getRoomIds() {
- return roomIds;
- }
- public void setRoomIds(String roomIds) {
- this.roomIds = roomIds;
- }
- public String getEntryTime() {
- return entryTime;
- }
- public void setEntryTime(String entryTime) {
- this.entryTime = entryTime;
- }
- }
|