com.salesmanager.shop.model.references.ZoneEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sm-shop-model Show documentation
Show all versions of sm-shop-model Show documentation
sm-shop-model contains Shopizer model objects for api
The newest version!
package com.salesmanager.shop.model.references;
import com.salesmanager.shop.model.entity.Entity;
public class ZoneEntity extends Entity {
/**
*
*/
private static final long serialVersionUID = 1L;
private String countryCode;
private String code;
public String getCountryCode() {
return countryCode;
}
public void setCountryCode(String countryCode) {
this.countryCode = countryCode;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
}