ResidentIntegrationBo.java 953 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package com.goafanti.residentIntegration.bo;
  2. public class ResidentIntegrationBo {
  3. private String id;/** 成果编号 **/
  4. private String name;/** 成果名字 **/
  5. private String maturity;/** 成熟度 **/
  6. private String industry;/** 行业 **/
  7. private String residenceCity;/** 所属城市 **/
  8. public String getName() {
  9. return name;
  10. }
  11. public String getId() {
  12. return id;
  13. }
  14. public void setId(String id) {
  15. this.id = id;
  16. }
  17. public void setName(String name) {
  18. this.name = name;
  19. }
  20. public String getMaturity() {
  21. return maturity;
  22. }
  23. public void setMaturity(String maturity) {
  24. this.maturity = maturity;
  25. }
  26. public String getIndustry() {
  27. return industry;
  28. }
  29. public void setIndustry(String industry) {
  30. this.industry = industry;
  31. }
  32. public String getResidenceCity() {
  33. return residenceCity;
  34. }
  35. public void setResidenceCity(String residenceCity) {
  36. this.residenceCity = residenceCity;
  37. }
  38. }