| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- package com.goafanti.common.model;
- public class CountryCode {
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column country_code.country_name_en
- *
- * @mbg.generated Fri Jul 21 08:55:01 CST 2017
- */
- private String countryNameEn;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column country_code.country_name_zh
- *
- * @mbg.generated Fri Jul 21 08:55:01 CST 2017
- */
- private String countryNameZh;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column country_code.region_code
- *
- * @mbg.generated Fri Jul 21 08:55:01 CST 2017
- */
- private String regionCode;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column country_code.tel_code
- *
- * @mbg.generated Fri Jul 21 08:55:01 CST 2017
- */
- private Integer telCode;
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column country_code.country_name_en
- *
- * @return the value of country_code.country_name_en
- *
- * @mbg.generated Fri Jul 21 08:55:01 CST 2017
- */
- public String getCountryNameEn() {
- return countryNameEn;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column country_code.country_name_en
- *
- * @param countryNameEn the value for country_code.country_name_en
- *
- * @mbg.generated Fri Jul 21 08:55:01 CST 2017
- */
- public void setCountryNameEn(String countryNameEn) {
- this.countryNameEn = countryNameEn;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column country_code.country_name_zh
- *
- * @return the value of country_code.country_name_zh
- *
- * @mbg.generated Fri Jul 21 08:55:01 CST 2017
- */
- public String getCountryNameZh() {
- return countryNameZh;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column country_code.country_name_zh
- *
- * @param countryNameZh the value for country_code.country_name_zh
- *
- * @mbg.generated Fri Jul 21 08:55:01 CST 2017
- */
- public void setCountryNameZh(String countryNameZh) {
- this.countryNameZh = countryNameZh;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column country_code.region_code
- *
- * @return the value of country_code.region_code
- *
- * @mbg.generated Fri Jul 21 08:55:01 CST 2017
- */
- public String getRegionCode() {
- return regionCode;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column country_code.region_code
- *
- * @param regionCode the value for country_code.region_code
- *
- * @mbg.generated Fri Jul 21 08:55:01 CST 2017
- */
- public void setRegionCode(String regionCode) {
- this.regionCode = regionCode;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column country_code.tel_code
- *
- * @return the value of country_code.tel_code
- *
- * @mbg.generated Fri Jul 21 08:55:01 CST 2017
- */
- public Integer getTelCode() {
- return telCode;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column country_code.tel_code
- *
- * @param telCode the value for country_code.tel_code
- *
- * @mbg.generated Fri Jul 21 08:55:01 CST 2017
- */
- public void setTelCode(Integer telCode) {
- this.telCode = telCode;
- }
- }
|