InputUserData.java 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package com.goafanti.customer.bo;
  2. public class InputUserData {
  3. private String uid;
  4. private Integer province;
  5. private Integer city;
  6. private Integer area;
  7. private String businessScope;
  8. private String intendedProject;
  9. private String introduction;
  10. private Integer channelType;
  11. private String orgCode;
  12. private Integer industry;
  13. public String getUid() {
  14. return uid;
  15. }
  16. public void setUid(String uid) {
  17. this.uid = uid;
  18. }
  19. public Integer getProvince() {
  20. return province;
  21. }
  22. public void setProvince(Integer province) {
  23. this.province = province;
  24. }
  25. public Integer getCity() {
  26. return city;
  27. }
  28. public void setCity(Integer city) {
  29. this.city = city;
  30. }
  31. public Integer getArea() {
  32. return area;
  33. }
  34. public void setArea(Integer area) {
  35. this.area = area;
  36. }
  37. public String getBusinessScope() {
  38. return businessScope;
  39. }
  40. public void setBusinessScope(String businessScope) {
  41. this.businessScope = businessScope;
  42. }
  43. public String getIntendedProject() {
  44. return intendedProject;
  45. }
  46. public void setIntendedProject(String intendedProject) {
  47. this.intendedProject = intendedProject;
  48. }
  49. public String getIntroduction() {
  50. return introduction;
  51. }
  52. public void setIntroduction(String introduction) {
  53. this.introduction = introduction;
  54. }
  55. public Integer getChannelType() {
  56. return channelType;
  57. }
  58. public void setChannelType(Integer channelType) {
  59. this.channelType = channelType;
  60. }
  61. public String getOrgCode() {
  62. return orgCode;
  63. }
  64. public void setOrgCode(String orgCode) {
  65. this.orgCode = orgCode;
  66. }
  67. public Integer getIndustry() {
  68. return industry;
  69. }
  70. public void setIndustry(Integer industry) {
  71. this.industry = industry;
  72. }
  73. }