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; } }