You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
547 B
Java
28 lines
547 B
Java
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;
|
|
}
|
|
}
|