| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package com.goafanti.residentIntegration.bo;
- public class ResidentIntegrationBo {
- private String id;/** 成果编号 **/
- private String name;/** 成果名字 **/
- private String maturity;/** 成熟度 **/
- private String industry;/** 行业 **/
- private String residenceCity;/** 所属城市 **/
-
- public String getName() {
- return name;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getMaturity() {
- return maturity;
- }
- public void setMaturity(String maturity) {
- this.maturity = maturity;
- }
- public String getIndustry() {
- return industry;
- }
- public void setIndustry(String industry) {
- this.industry = industry;
- }
- public String getResidenceCity() {
- return residenceCity;
- }
- public void setResidenceCity(String residenceCity) {
- this.residenceCity = residenceCity;
- }
- }
|