bfdef200fcac4a15ebb078c5d934cb85ccbf1f43.svn-base 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.dcproj.model.BisInspRsvrSd;
  3. public class BisInspRsvrSdDto extends BisInspRsvrSd {
  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 BisInspRsvrSdDto() {
  23. }
  24. public String getCode() {
  25. return code;
  26. }
  27. public void setCode(String code) {
  28. this.code = code;
  29. }
  30. public String getBaseId() {
  31. return baseId;
  32. }
  33. public void setBaseId(String baseId) {
  34. this.baseId = baseId;
  35. }
  36. public String getNodeId() {
  37. return nodeId;
  38. }
  39. public void setNodeId(String nodeId) {
  40. this.nodeId = nodeId;
  41. }
  42. public String getNm() {
  43. return nm;
  44. }
  45. public void setNm(String nm) {
  46. this.nm = nm;
  47. }
  48. public String getpType() {
  49. return pType;
  50. }
  51. public void setpType(String pType) {
  52. this.pType = pType;
  53. }
  54. public String getType() {
  55. return type;
  56. }
  57. public void setType(String type) {
  58. this.type = type;
  59. }
  60. public String getGroupName() {
  61. return groupName;
  62. }
  63. public void setGroupName(String groupName) {
  64. this.groupName = groupName;
  65. }
  66. public String getProName() {
  67. return proName;
  68. }
  69. public void setProName(String proName) {
  70. this.proName = proName;
  71. }
  72. public String getCityName() {
  73. return cityName;
  74. }
  75. public void setCityName(String cityName) {
  76. this.cityName = cityName;
  77. }
  78. public String getCountyName() {
  79. return countyName;
  80. }
  81. public void setCountyName(String countyName) {
  82. this.countyName = countyName;
  83. }
  84. }