CountryCode.java 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. package com.goafanti.common.model;
  2. public class CountryCode {
  3. /**
  4. *
  5. * This field was generated by MyBatis Generator.
  6. * This field corresponds to the database column country_code.country_name_en
  7. *
  8. * @mbg.generated Fri Jul 21 08:55:01 CST 2017
  9. */
  10. private String countryNameEn;
  11. /**
  12. *
  13. * This field was generated by MyBatis Generator.
  14. * This field corresponds to the database column country_code.country_name_zh
  15. *
  16. * @mbg.generated Fri Jul 21 08:55:01 CST 2017
  17. */
  18. private String countryNameZh;
  19. /**
  20. *
  21. * This field was generated by MyBatis Generator.
  22. * This field corresponds to the database column country_code.region_code
  23. *
  24. * @mbg.generated Fri Jul 21 08:55:01 CST 2017
  25. */
  26. private String regionCode;
  27. /**
  28. *
  29. * This field was generated by MyBatis Generator.
  30. * This field corresponds to the database column country_code.tel_code
  31. *
  32. * @mbg.generated Fri Jul 21 08:55:01 CST 2017
  33. */
  34. private Integer telCode;
  35. /**
  36. * This method was generated by MyBatis Generator.
  37. * This method returns the value of the database column country_code.country_name_en
  38. *
  39. * @return the value of country_code.country_name_en
  40. *
  41. * @mbg.generated Fri Jul 21 08:55:01 CST 2017
  42. */
  43. public String getCountryNameEn() {
  44. return countryNameEn;
  45. }
  46. /**
  47. * This method was generated by MyBatis Generator.
  48. * This method sets the value of the database column country_code.country_name_en
  49. *
  50. * @param countryNameEn the value for country_code.country_name_en
  51. *
  52. * @mbg.generated Fri Jul 21 08:55:01 CST 2017
  53. */
  54. public void setCountryNameEn(String countryNameEn) {
  55. this.countryNameEn = countryNameEn;
  56. }
  57. /**
  58. * This method was generated by MyBatis Generator.
  59. * This method returns the value of the database column country_code.country_name_zh
  60. *
  61. * @return the value of country_code.country_name_zh
  62. *
  63. * @mbg.generated Fri Jul 21 08:55:01 CST 2017
  64. */
  65. public String getCountryNameZh() {
  66. return countryNameZh;
  67. }
  68. /**
  69. * This method was generated by MyBatis Generator.
  70. * This method sets the value of the database column country_code.country_name_zh
  71. *
  72. * @param countryNameZh the value for country_code.country_name_zh
  73. *
  74. * @mbg.generated Fri Jul 21 08:55:01 CST 2017
  75. */
  76. public void setCountryNameZh(String countryNameZh) {
  77. this.countryNameZh = countryNameZh;
  78. }
  79. /**
  80. * This method was generated by MyBatis Generator.
  81. * This method returns the value of the database column country_code.region_code
  82. *
  83. * @return the value of country_code.region_code
  84. *
  85. * @mbg.generated Fri Jul 21 08:55:01 CST 2017
  86. */
  87. public String getRegionCode() {
  88. return regionCode;
  89. }
  90. /**
  91. * This method was generated by MyBatis Generator.
  92. * This method sets the value of the database column country_code.region_code
  93. *
  94. * @param regionCode the value for country_code.region_code
  95. *
  96. * @mbg.generated Fri Jul 21 08:55:01 CST 2017
  97. */
  98. public void setRegionCode(String regionCode) {
  99. this.regionCode = regionCode;
  100. }
  101. /**
  102. * This method was generated by MyBatis Generator.
  103. * This method returns the value of the database column country_code.tel_code
  104. *
  105. * @return the value of country_code.tel_code
  106. *
  107. * @mbg.generated Fri Jul 21 08:55:01 CST 2017
  108. */
  109. public Integer getTelCode() {
  110. return telCode;
  111. }
  112. /**
  113. * This method was generated by MyBatis Generator.
  114. * This method sets the value of the database column country_code.tel_code
  115. *
  116. * @param telCode the value for country_code.tel_code
  117. *
  118. * @mbg.generated Fri Jul 21 08:55:01 CST 2017
  119. */
  120. public void setTelCode(Integer telCode) {
  121. this.telCode = telCode;
  122. }
  123. }