com.salesmanager.shop.model.entity.UniqueEntity 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.entity;
import java.io.Serializable;
import javax.validation.constraints.NotNull;
public class UniqueEntity implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
@NotNull
private String unique;
@NotNull
private String merchant;
public String getUnique() {
return unique;
}
public void setUnique(String unique) {
this.unique = unique;
}
public String getMerchant() {
return merchant;
}
public void setMerchant(String merchant) {
this.merchant = merchant;
}
}