0f5e75b5ea24fc9deb6c32688fd64847c09e58be.svn-base 2.0 KB

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