| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254 |
- package com.goafanti.customer.bo;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import java.util.Date;
- public class OutSelectUserArchives {
- private String id;
- private String nickname;
- private String province;
- private String city;
- private String area;
- private Integer shareType;
- private Integer channelType;
- private Integer enterpriseCount;
- private String contactName;
- private String adminName;
- private String channelIndicators;
- private String interviewIdeas;
- private String intendedProject;
- private String interviewDistribution;
- private String depName;
- private String industry;
- private String businessScope;
- private String financialData;
- private String earlyCommunication;
- private Integer patentCount;
- private Integer inventionPatentCount;
- private Integer utilityModelCount;
- private Integer appearancePatentCount;
- private Integer softwareWorksCount;
- private Integer otherCount;
- private Date createTime;
- private Date updateTime;
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
- public Date getUpdateTime() {
- return updateTime;
- }
- public void setUpdateTime(Date updateTime) {
- this.updateTime = updateTime;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getNickname() {
- return nickname;
- }
- public void setNickname(String nickname) {
- this.nickname = nickname;
- }
- 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 getArea() {
- return area;
- }
- public void setArea(String area) {
- this.area = area;
- }
- public Integer getShareType() {
- return shareType;
- }
- public void setShareType(Integer shareType) {
- this.shareType = shareType;
- }
- public Integer getChannelType() {
- return channelType;
- }
- public void setChannelType(Integer channelType) {
- this.channelType = channelType;
- }
- public Integer getEnterpriseCount() {
- return enterpriseCount;
- }
- public void setEnterpriseCount(Integer enterpriseCount) {
- this.enterpriseCount = enterpriseCount;
- }
- public String getContactName() {
- return contactName;
- }
- public void setContactName(String contactName) {
- this.contactName = contactName;
- }
- public String getAdminName() {
- return adminName;
- }
- public void setAdminName(String adminName) {
- this.adminName = adminName;
- }
- public String getChannelIndicators() {
- return channelIndicators;
- }
- public void setChannelIndicators(String channelIndicators) {
- this.channelIndicators = channelIndicators;
- }
- public String getInterviewIdeas() {
- return interviewIdeas;
- }
- public void setInterviewIdeas(String interviewIdeas) {
- this.interviewIdeas = interviewIdeas;
- }
- public String getIntendedProject() {
- return intendedProject;
- }
- public void setIntendedProject(String intendedProject) {
- this.intendedProject = intendedProject;
- }
- public String getInterviewDistribution() {
- return interviewDistribution;
- }
- public void setInterviewDistribution(String interviewDistribution) {
- this.interviewDistribution = interviewDistribution;
- }
- public String getDepName() {
- return depName;
- }
- public void setDepName(String depName) {
- this.depName = depName;
- }
- public String getIndustry() {
- return industry;
- }
- public void setIndustry(String industry) {
- this.industry = industry;
- }
- public String getBusinessScope() {
- return businessScope;
- }
- public void setBusinessScope(String businessScope) {
- this.businessScope = businessScope;
- }
- public String getFinancialData() {
- return financialData;
- }
- public void setFinancialData(String financialData) {
- this.financialData = financialData;
- }
- public String getEarlyCommunication() {
- return earlyCommunication;
- }
- public void setEarlyCommunication(String earlyCommunication) {
- this.earlyCommunication = earlyCommunication;
- }
- public Integer getPatentCount() {
- return patentCount;
- }
- public void setPatentCount(Integer patentCount) {
- this.patentCount = patentCount;
- }
- public Integer getInventionPatentCount() {
- return inventionPatentCount;
- }
- public void setInventionPatentCount(Integer inventionPatentCount) {
- this.inventionPatentCount = inventionPatentCount;
- }
- public Integer getUtilityModelCount() {
- return utilityModelCount;
- }
- public void setUtilityModelCount(Integer utilityModelCount) {
- this.utilityModelCount = utilityModelCount;
- }
- public Integer getAppearancePatentCount() {
- return appearancePatentCount;
- }
- public void setAppearancePatentCount(Integer appearancePatentCount) {
- this.appearancePatentCount = appearancePatentCount;
- }
- public Integer getSoftwareWorksCount() {
- return softwareWorksCount;
- }
- public void setSoftwareWorksCount(Integer softwareWorksCount) {
- this.softwareWorksCount = softwareWorksCount;
- }
- public Integer getOtherCount() {
- return otherCount;
- }
- public void setOtherCount(Integer otherCount) {
- this.otherCount = otherCount;
- }
- }
|