package egovframework.com.cmm.service; import java.io.Serializable; public class IpCountryVO implements Serializable { private static final long serialVersionUID = 4272890967100979951L; private String countryCode; private String countryName; public String getCountryCode() { return countryCode; } public void setCountryCode(String countryCode) { this.countryCode = countryCode; } public String getCountryName() { return countryName; } public void setCountryName(String countryName) { this.countryName = countryName; } }