package com.goafanti.customer.bo; public class InputUserData { private String uid; private Integer province; private Integer city; private Integer area; private String businessScope; private String intendedProject; private String introduction; private Integer channelType; private String orgCode; private Integer industry; public String getUid() { return uid; } public void setUid(String uid) { this.uid = uid; } public Integer getProvince() { return province; } public void setProvince(Integer province) { this.province = province; } public Integer getCity() { return city; } public void setCity(Integer city) { this.city = city; } public Integer getArea() { return area; } public void setArea(Integer area) { this.area = area; } public String getBusinessScope() { return businessScope; } public void setBusinessScope(String businessScope) { this.businessScope = businessScope; } public String getIntendedProject() { return intendedProject; } public void setIntendedProject(String intendedProject) { this.intendedProject = intendedProject; } public String getIntroduction() { return introduction; } public void setIntroduction(String introduction) { this.introduction = introduction; } public Integer getChannelType() { return channelType; } public void setChannelType(Integer channelType) { this.channelType = channelType; } public String getOrgCode() { return orgCode; } public void setOrgCode(String orgCode) { this.orgCode = orgCode; } public Integer getIndustry() { return industry; } public void setIndustry(Integer industry) { this.industry = industry; } }