1d43e8860c8e664daa17c2a606a95522df297ef2.svn-base 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.dcproj.model.BisInspChmclsRgstr;
  3. public class BisInspChmclsRgstrDto extends BisInspChmclsRgstr {
  4. /**
  5. * 基础表id
  6. */
  7. private String code;
  8. // 基础表id
  9. private String baseId;
  10. //组id
  11. private String nodeId;
  12. // 对象名称
  13. private String nm;
  14. // ptype
  15. private String pType;
  16. // 对象ut_Type
  17. private String type;
  18. private String groupName;
  19. private String proName;
  20. private String cityName;
  21. private String countyName;
  22. public String getCityName() {
  23. return cityName;
  24. }
  25. public void setCityName(String cityName) {
  26. this.cityName = cityName;
  27. }
  28. public String getCountyName() {
  29. return countyName;
  30. }
  31. public void setCountyName(String countyName) {
  32. this.countyName = countyName;
  33. }
  34. public String getProName() {
  35. return proName;
  36. }
  37. public void setProName(String proName) {
  38. this.proName = proName;
  39. }
  40. public String getGroupName() {
  41. return groupName;
  42. }
  43. public void setGroupName(String groupName) {
  44. this.groupName = groupName;
  45. }
  46. public String getCode() {
  47. return code;
  48. }
  49. public void setCode(String code) {
  50. this.code = code;
  51. }
  52. public String getNodeId() {
  53. return nodeId;
  54. }
  55. public void setNodeId(String nodeId) {
  56. this.nodeId = nodeId;
  57. }
  58. public String getNm() {
  59. return nm;
  60. }
  61. public void setNm(String nm) {
  62. this.nm = nm;
  63. }
  64. public String getpType() {
  65. return pType;
  66. }
  67. public void setpType(String pType) {
  68. this.pType = pType;
  69. }
  70. public String getBaseId() {
  71. return baseId;
  72. }
  73. public void setBaseId(String baseId) {
  74. this.baseId = baseId;
  75. }
  76. public String getType() {
  77. return type;
  78. }
  79. public void setType(String type) {
  80. this.type = type;
  81. }
  82. }