Skip to content

Instantly share code, notes, and snippets.

public class Product implements VersionedEntity {
// Table this Entity represents
private final String TABLE = "product";
private Long id;
private Long version;
private String name;
private Long upc;