package com.cme.core.entity;
public class CountryMapping {
    
    private String provId;
    
    private String provName;
    
    private String cityId;
    
    private String cityName;
    
    private String countryId;
    
    private String countryName;
    public String getProvId() {
        return provId;
    }
    public void setProvId(String provId) {
        this.provId = provId;
    }
    public String getProvName() {
        return provName;
    }
    public void setProvName(String provName) {
        this.provName = provName;
    }
    public String getCityId() {
        return cityId;
    }
    public void setCityId(String cityId) {
        this.cityId = cityId;
    }
    public String getCityName() {
        return cityName;
    }
    public void setCityName(String cityName) {
        this.cityName = cityName;
    }
    public String getCountryId() {
        return countryId;
    }
    public void setCountryId(String countryId) {
        this.countryId = countryId;
    }
    public String getCountryName() {
        return countryName;
    }
    public void setCountryName(String countryName) {
        this.countryName = countryName;
    }
}
 
 
 
 
package com.cme.core.entity;
public class Currency {
    
    private String code;
    
    private String name;
    
    private String registeredCapital;
    public String getCode() {
        return code;
    }
    public void setCode(String code) {
        this.code = code;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getRegisteredCapital() {
        return registeredCapital;
    }
    public void setRegisteredCapital(String registeredCapital) {
        this.registeredCapital = registeredCapital;
    }
}
 
 
 
package com.cme.core.entity;
public class EnterpriseAddressInfo {
    
    private String provId;
    
    private String provName;
    
    private String cityId;
    
    private String cityName;
    
    private String countryId;
    
    private String countryName;
    
    private String address;
    public String getProvId() {
        return provId;
    }
    public void setProvId(String provId) {
        this.provId = provId;
    }
    public String getProvName() {
        return provName;
    }
    public void setProvName(String provName) {
        this.provName = provName;
    }
    public String getCityId() {
        return cityId;
    }
    public void setCityId(String cityId) {
        this.cityId = cityId;
    }
    public String getCityName() {
        return cityName;
    }
    public void setCityName(String cityName) {
        this.cityName = cityName;
    }
    public String getCountryId() {
        return countryId;
    }
    public void setCountryId(String countryId) {
        this.countryId = countryId;
    }
    public String getCountryName() {
        return countryName;
    }
    public void setCountryName(String countryName) {
        this.countryName = countryName;
    }
    public String getAddress() {
        return address;
    }
    public void setAddress(String address) {
        this.address = address;
    }
}
 
 
 
package com.cme.core.entity;
/**
 * 產業行業
 * @author GD-16-01C021
 *
 */
public class IndustryInfo {
    
    private String code;
    
    private String name;
    public String getCode() {
        return code;
    }
    public void setCode(String code) {
        this.code = code;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    
}