com.salesmanager.shop.model.entity.Entity 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;
public class Entity implements Serializable {
public Entity() {}
/**
*
*/
private static final long serialVersionUID = 1L;
private Long id = 0L;
public void setId(Long id) {
this.id = id;
}
public Long getId() {
return id;
}
}