package com.floreantpos.model.base; import java.io.Serializable; /** * This is an object that contains data related to the SHIFT table. * Do not modify this class because it will be overwritten if the configuration file * related to this class is modified. * * @hibernate.class * table="SHIFT" */ public abstract class BaseShift implements Comparable, Serializable { public static String REF = "Shift"; public static String PROP_NAME = "name"; public static String PROP_SHIFT_LENGTH = "shiftLength"; public static String PROP_ID = "id"; public static String PROP_END_TIME = "endTime"; public static String PROP_START_TIME = "startTime"; // constructors public BaseShift () { initialize(); } /** * Constructor for primary key */ public BaseShift (java.lang.Integer id) { this.setId(id); initialize(); } /** * Constructor for required fields */ public BaseShift ( java.lang.Integer id, java.lang.String name) { this.setId(id); this.setName(name); initialize(); } protected void initialize () {} private int hashCode = Integer.MIN_VALUE; // primary key private java.lang.Integer id; // fields private java.lang.String name; private java.util.Date startTime; private java.util.Date endTime; private java.lang.Long shiftLength; /** * Return the unique identifier of this class * @hibernate.id * generator-class="identity" * column="ID" */ public java.lang.Integer getId () { return id; } /** * Set the unique identifier of this class * @param id the new ID */ public void setId (java.lang.Integer id) { this.id = id; this.hashCode = Integer.MIN_VALUE; } /** * Return the value associated with the column: NAME */ public java.lang.String getName () { return name; } /** * Set the value related to the column: NAME * @param name the NAME value */ public void setName (java.lang.String name) { this.name = name; } /** * Return the value associated with the column: START_TIME */ public java.util.Date getStartTime () { return startTime; } /** * Set the value related to the column: START_TIME * @param startTime the START_TIME value */ public void setStartTime (java.util.Date startTime) { this.startTime = startTime; } /** * Return the value associated with the column: END_TIME */ public java.util.Date getEndTime () { return endTime; } /** * Set the value related to the column: END_TIME * @param endTime the END_TIME value */ public void setEndTime (java.util.Date endTime) { this.endTime = endTime; } /** * Return the value associated with the column: SHIFT_LEN */ public java.lang.Long getShiftLength () { return shiftLength; } /** * Set the value related to the column: SHIFT_LEN * @param shiftLength the SHIFT_LEN value */ public void setShiftLength (java.lang.Long shiftLength) { this.shiftLength = shiftLength; } public boolean equals (Object obj) { if (null == obj) return false; if (!(obj instanceof com.floreantpos.model.Shift)) return false; else { com.floreantpos.model.Shift shift = (com.floreantpos.model.Shift) obj; if (null == this.getId() || null == shift.getId()) return false; else return (this.getId().equals(shift.getId())); } } public int hashCode () { if (Integer.MIN_VALUE == this.hashCode) { if (null == this.getId()) return super.hashCode(); else { String hashStr = this.getClass().getName() + ":" + this.getId().hashCode(); this.hashCode = hashStr.hashCode(); } } return this.hashCode; } public int compareTo (Object obj) { if (obj.hashCode() > hashCode()) return 1; else if (obj.hashCode() < hashCode()) return -1; else return 0; } public String toString () { return super.toString(); } }