1e09f44f50fb0bca678e29acf0d7b9b7f8098788.svn-base 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package cn.com.goldenwater.dcproj.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import java.io.Serializable;
  4. public class VillDcdxBaseDto implements Serializable {
  5. @ApiModelProperty(value = "省")
  6. private String province;
  7. @ApiModelProperty(value = "市")
  8. private String city;
  9. @ApiModelProperty(value = "县")
  10. private String county;
  11. @ApiModelProperty(value = "镇")
  12. private String town;
  13. @ApiModelProperty(value = "检查单位")
  14. private String chkCom;
  15. @ApiModelProperty(value = "所在组")
  16. private String groupNm;
  17. public String getProvince() {
  18. return province;
  19. }
  20. public void setProvince(String province) {
  21. this.province = province;
  22. }
  23. public String getCity() {
  24. return city;
  25. }
  26. public void setCity(String city) {
  27. this.city = city;
  28. }
  29. public String getCounty() {
  30. return county;
  31. }
  32. public void setCounty(String county) {
  33. this.county = county;
  34. }
  35. public String getTown() {
  36. return town;
  37. }
  38. public void setTown(String town) {
  39. this.town = town;
  40. }
  41. public String getChkCom() {
  42. return chkCom;
  43. }
  44. public void setChkCom(String chkCom) {
  45. this.chkCom = chkCom;
  46. }
  47. public String getGroupNm() {
  48. return groupNm;
  49. }
  50. public void setGroupNm(String groupNm) {
  51. this.groupNm = groupNm;
  52. }
  53. }