ef8e07008651a39287e00de06942d30b8d5ed896.svn-base 2.1 KB

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