补偿 public static class ServiceLive{ private String type;//服务类型 private String name;//服务名称 private String intro;//服务简介 private String img;//图片 public ServiceLive(S 展开
补偿 public static class ServiceLive{ private String type;//服务类型 private String name;//服务名称 private String intro;//服务简介 private String img;//图片 public ServiceLive(String type, String name, String intro, String img) { this.type = type;this.name = name;this.intro = intro;this.img = img;} public String getType() { return type;} public void setType(String type) { this.type = type;} public String getName() { return name;} public void setName(String name) { this.name = name;} public String getIntro() { return intro;} public void setIntro(String intro) { this.intro = intro;} public String getImg() { return img;} public void setImg(String img) { this.img = img;} } /** * 政策性住房 */ //国家类: 低保;廉租房;公租房;危旧重建农民工安置房; public static class PolicyLive{ private String type;//服务类型 private String name;//服务名称 private String intro;//服务简介 private String img;//图片 public PolicyLive(String type, String name, String intro, String img) { this.type = type;this.name = name;this.intro = intro;this.img = img;} public String getType() { return type;} public void setType(String type) { this.type = type;} public String getName() { return name;} public void setName(String name) { this.name = name;} public String getIntro() { return intro;} public void setIntro(String intro) { this.intro = intro;} public String getImg() { return img;} public void setImg(String img) { this.img = img;} }} 收起