package pizza.domain; // Generated Oct 17, 2007 1:40:55 PM by Hibernate Tools 3.2.0.beta8 /** * SysTime generated by hbm2java */ public class SysTime implements java.io.Serializable { // Fields static final long serialVersionUID = 5; private int id; private int currentDay; private int lastOrderId; private int lastReport; // Constructors /** default constructor */ public SysTime() { } /** full constructor */ public SysTime(int id, int currentDay, int lastOrderId, int lastReport) { this.id = id; this.currentDay = currentDay; this.lastOrderId = lastOrderId; this.lastReport = lastReport; } // Property accessors public int getId() { return this.id; } public void setId(int id) { this.id = id; } public int getCurrentDay() { return this.currentDay; } public void setCurrentDay(int currentDay) { this.currentDay = currentDay; } public int getLastOrderId() { return this.lastOrderId; } public void setLastOrderId(int lastOrderId) { this.lastOrderId = lastOrderId; } public int getLastReport() { return this.lastReport; } public void setLastReport(int lastReport) { this.lastReport = lastReport; } }