Location.java 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. package com.cloudcross.ssp.model;
  2. /**
  3. * 地域表,对应数据库里面的表t_location
  4. * @author luohongyu
  5. */
  6. public class Location {
  7. private Long id;
  8. private String location;
  9. private String locationT;
  10. private String location1;
  11. private String location2;
  12. private String location3;
  13. private String country;
  14. private String cn;
  15. private String big5;
  16. private String cnCity;
  17. private String big5City;
  18. private String cnDistrict;
  19. private String big5District;
  20. private String py;
  21. private String enCity;
  22. private String enDistrict;
  23. private String en;
  24. public Long getId() {
  25. return id;
  26. }
  27. public void setId(Long id) {
  28. this.id = id;
  29. }
  30. public String getLocation() {
  31. return location;
  32. }
  33. public void setLocation(String location) {
  34. this.location = location;
  35. }
  36. public String getLocationT() {
  37. return locationT;
  38. }
  39. public void setLocationT(String locationT) {
  40. this.locationT = locationT;
  41. }
  42. public String getLocation1() {
  43. return location1;
  44. }
  45. public void setLocation1(String location1) {
  46. this.location1 = location1;
  47. }
  48. public String getLocation2() {
  49. return location2;
  50. }
  51. public void setLocation2(String location2) {
  52. this.location2 = location2;
  53. }
  54. public String getLocation3() {
  55. return location3;
  56. }
  57. public void setLocation3(String location3) {
  58. this.location3 = location3;
  59. }
  60. public String getCountry() {
  61. return country;
  62. }
  63. public void setCountry(String country) {
  64. this.country = country;
  65. }
  66. public String getCn() {
  67. return cn;
  68. }
  69. public void setCn(String cn) {
  70. this.cn = cn;
  71. }
  72. public String getBig5() {
  73. return big5;
  74. }
  75. public void setBig5(String big5) {
  76. this.big5 = big5;
  77. }
  78. public String getCnCity() {
  79. return cnCity;
  80. }
  81. public void setCnCity(String cnCity) {
  82. this.cnCity = cnCity;
  83. }
  84. public String getBig5City() {
  85. return big5City;
  86. }
  87. public void setBig5City(String big5City) {
  88. this.big5City = big5City;
  89. }
  90. public String getCnDistrict() {
  91. return cnDistrict;
  92. }
  93. public void setCnDistrict(String cnDistrict) {
  94. this.cnDistrict = cnDistrict;
  95. }
  96. public String getBig5District() {
  97. return big5District;
  98. }
  99. public void setBig5District(String big5District) {
  100. this.big5District = big5District;
  101. }
  102. public String getPy() {
  103. return py;
  104. }
  105. public void setPy(String py) {
  106. this.py = py;
  107. }
  108. public String getEnCity() {
  109. return enCity;
  110. }
  111. public void setEnCity(String enCity) {
  112. this.enCity = enCity;
  113. }
  114. public String getEnDistrict() {
  115. return enDistrict;
  116. }
  117. public void setEnDistrict(String enDistrict) {
  118. this.enDistrict = enDistrict;
  119. }
  120. public String getEn() {
  121. return en;
  122. }
  123. public void setEn(String en) {
  124. this.en = en;
  125. }
  126. }