com.salesmanager.shop.model.system.OptinEntity 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.system;
import java.util.Date;
public class OptinEntity extends Optin {
/**
*
*/
private static final long serialVersionUID = 1L;
private Date startDate;
private Date endDate;
private String optinType;
private String store;
private String code;
private String description;
public Date getStartDate() {
return startDate;
}
public void setStartDate(Date startDate) {
this.startDate = startDate;
}
public Date getEndDate() {
return endDate;
}
public void setEndDate(Date endDate) {
this.endDate = endDate;
}
public String getStore() {
return store;
}
public void setStore(String store) {
this.store = store;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getOptinType() {
return optinType;
}
public void setOptinType(String optinType) {
this.optinType = optinType;
}
}