com.salesmanager.shop.model.customer.BillingEntity 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.customer;
import javax.persistence.Transient;
import com.salesmanager.shop.model.customer.address.Address;
public class BillingEntity extends Address {
/**
*
*/
private static final long serialVersionUID = 1L;
private String email;
@Transient
private String countryName;
@Transient
private String provinceName;
public String getCountryName() {
return countryName;
}
public void setCountryName(String countryName) {
this.countryName = countryName;
}
public String getProvinceName() {
return provinceName;
}
public void setProvinceName(String provinceName) {
this.provinceName = provinceName;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
}