8bf40fa8a99494a9ee5baba505d3e65e05223f4d.svn-base 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.dcproj.model.BisInspQa;
  3. /**
  4. * @author: hjp
  5. * @create: 2022/07/29
  6. */
  7. public class BisInspQaDto extends BisInspQa {
  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. public String getCountry() {
  25. return country;
  26. }
  27. public void setCountry(String country) {
  28. this.country = country;
  29. }
  30. public String getCity() {
  31. return city;
  32. }
  33. public void setCity(String city) {
  34. this.city = city;
  35. }
  36. public String getAdFullName() {
  37. return adFullName;
  38. }
  39. public void setAdFullName(String adFullName) {
  40. this.adFullName = adFullName;
  41. }
  42. public String getGroupName() {
  43. return groupName;
  44. }
  45. public void setGroupName(String groupName) {
  46. this.groupName = groupName;
  47. }
  48. public String getCode() {
  49. return code;
  50. }
  51. public void setCode(String code) {
  52. this.code = code;
  53. }
  54. public String getNodeId() {
  55. return nodeId;
  56. }
  57. public void setNodeId(String nodeId) {
  58. this.nodeId = nodeId;
  59. }
  60. public String getNm() {
  61. return nm;
  62. }
  63. public void setNm(String nm) {
  64. this.nm = nm;
  65. }
  66. public String getpType() {
  67. return pType;
  68. }
  69. public void setpType(String pType) {
  70. this.pType = pType;
  71. }
  72. public String getBaseId() {
  73. return baseId;
  74. }
  75. public void setBaseId(String baseId) {
  76. this.baseId = baseId;
  77. }
  78. public String getType() {
  79. return type;
  80. }
  81. public void setType(String type) {
  82. this.type = type;
  83. }
  84. }