bdd1a029fe0976e5a20a54aa9541b7fd0617800f.svn-base 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.dcproj.model.BisInspFjpjmgdp;
  3. public class BisInspFjpjmgdpDto extends BisInspFjpjmgdp {
  4. // 基础表id
  5. private String code;
  6. // 基础表id
  7. private String baseId;
  8. //组id
  9. private String nodeId;
  10. // 对象名称
  11. private String nm;
  12. // ptype
  13. private String pType;
  14. // 对象ut_Type
  15. private String type;
  16. private String groupName;
  17. private String adFullName;
  18. private String city;
  19. private String country;
  20. private String isCnfm;
  21. @Override
  22. public String getIsCnfm() {
  23. return isCnfm;
  24. }
  25. @Override
  26. public void setIsCnfm(String isCnfm) {
  27. this.isCnfm = isCnfm;
  28. }
  29. public String getCode() {
  30. return code;
  31. }
  32. public void setCode(String code) {
  33. this.code = code;
  34. }
  35. public String getBaseId() {
  36. return baseId;
  37. }
  38. public void setBaseId(String baseId) {
  39. this.baseId = baseId;
  40. }
  41. public String getNodeId() {
  42. return nodeId;
  43. }
  44. public void setNodeId(String nodeId) {
  45. this.nodeId = nodeId;
  46. }
  47. public String getNm() {
  48. return nm;
  49. }
  50. public void setNm(String nm) {
  51. this.nm = nm;
  52. }
  53. public String getpType() {
  54. return pType;
  55. }
  56. public void setpType(String pType) {
  57. this.pType = pType;
  58. }
  59. public String getType() {
  60. return type;
  61. }
  62. public void setType(String type) {
  63. this.type = type;
  64. }
  65. public String getGroupName() {
  66. return groupName;
  67. }
  68. public void setGroupName(String groupName) {
  69. this.groupName = groupName;
  70. }
  71. public String getAdFullName() {
  72. return adFullName;
  73. }
  74. public void setAdFullName(String adFullName) {
  75. this.adFullName = adFullName;
  76. }
  77. public String getCity() {
  78. return city;
  79. }
  80. public void setCity(String city) {
  81. this.city = city;
  82. }
  83. public String getCountry() {
  84. return country;
  85. }
  86. public void setCountry(String country) {
  87. this.country = country;
  88. }
  89. }