| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- 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;
- }
- }
|