/*
* WARNING: DO NOT EDIT THIS FILE. This is a generated file that is synchronized
* by MyEclipse Hibernate tool integration.
*
* Created Sun Feb 17 17:05:30 CST 2008 by MyEclipse Hibernate Tool.
*/
package com.xinda.dao;
import java.io.Serializable;
/**
* A class that represents a row in the order table.
* You can customize the behavior of this class by editing the class, {@link Order()}.
* WARNING: DO NOT EDIT THIS FILE. This is a generated file that is synchronized
* by MyEclipse Hibernate tool integration.
*/
public abstract class AbstractOrder
implements Serializable
{
/** The cached hash code value for this instance. Settting to 0 triggers re-calculation. */
private int hashValue = 0;
/** The composite primary key value. */
private java.lang.Integer orderno;
/** The value of the simple orderdate property. */
private java.util.Date orderdate;
/** The value of the simple customcode property. */
private java.lang.String customcode;
/** The value of the simple customname property. */
private java.lang.String customname;
/** The value of the simple contactname property. */
private java.lang.String contactname;
/** The value of the simple contactphone property. */
private java.lang.String contactphone;
/** The value of the simple saleman property. */
private java.lang.String saleman;
/** The value of the simple ordertype property. */
private java.lang.String ordertype;
/** The value of the simple orderbrief property. */
private java.lang.String orderbrief;
/** The value of the simple sampleyn property. */
private java.lang.String sampleyn;
/** The value of the simple deadlinedatetime property. */
private java.util.Date deadlinedatetime;
/** The value of the simple feeinstall property. */
private java.lang.Double feeinstall;
/** The value of the simple feeother property. */
private java.lang.Double feeother;
/** The value of the simple feereceivable property. */
private java.lang.Double feereceivable;
/** The value of the simple feeincome property. */
private java.lang.Double feeincome;
/** The value of the simple feeoffrate property. */
private java.lang.Float feeoffrate;
/** The value of the simple accounttype property. */
private java.lang.String accounttype;
/** The value of the simple incomeyn property. */
private java.lang.String incomeyn;
/** The value of the simple incomedate property. */
private java.util.Date incomedate;
/** The value of the simple invoiceyn property. */
private java.lang.String invoiceyn;
/** The value of the simple invoicenum property. */
private java.lang.String invoicenum;
/** The value of the simple deliverman property. */
private java.lang.String deliverman;
/** The value of the simple receiveman property. */
private java.lang.String receiveman;
/** The value of the simple receivedatetime property. */
private java.util.Date receivedatetime;
/** The value of the simple notes property. */
private java.lang.String notes;
/** The value of the simple isdelete property. */
private java.lang.Integer isdelete;
/**
* Simple constructor of AbstractOrder instances.
*/
public AbstractOrder()
{
}
/**
* Constructor of AbstractOrder instances given a simple primary key.
* @param orderno
*/
public AbstractOrder(java.lang.Integer orderno)
{
this.setOrderno(orderno);
}
/**
* Return the simple primary key value that identifies this object.
* @return java.lang.Integer
*/
public java.lang.Integer getOrderno()
{
return orderno;
}
/**
* Set the simple primary key value that identifies this object.
* @param orderno
*/
public void setOrderno(java.lang.Integer orderno)
{
this.hashValue = 0;
this.orderno = orderno;
}
/**
* Return the value of the orderDate column.
* @return java.util.Date
*/
public java.util.Date getOrderdate()
{
return this.orderdate;
}
/**
* Set the value of the orderDate column.
* @param orderdate
*/
public void setOrderdate(java.util.Date orderdate)
{
this.orderdate = orderdate;
}
/**
* Return the value of the customCode column.
* @return java.lang.String
*/
public java.lang.String getCustomcode()
{
return this.customcode;
}
/**
* Set the value of the customCode column.
* @param customcode
*/
public void setCustomcode(java.lang.String customcode)
{
this.customcode = customcode;
}
/**
* Return the value of the customName column.
* @return java.lang.String
*/
public java.lang.String getCustomname()
{
return this.customname;
}
/**
* Set the value of the customName column.
* @param customname
*/
public void setCustomname(java.lang.String customname)
{
this.customname = customname;
}
/**
* Return the value of the contactName column.
* @return java.lang.String
*/
public java.lang.String getContactname()
{
return this.contactname;
}
/**
* Set the value of the contactName column.
* @param contactname
*/
public void setContactname(java.lang.String contactname)
{
this.contactname = contactname;
}
/**
* Return the value of the contactPhone column.
* @return java.lang.String
*/
public java.lang.String getContactphone()
{
return this.contactphone;
}
/**
* Set the value of the contactPhone column.
* @param contactphone
*/
public void setContactphone(java.lang.String contactphone)
{
this.contactphone = contactphone;
}
/**
* Return the value of the saleMan column.
* @return java.lang.String
*/
public java.lang.String getSaleman()
{
return this.saleman;
}
/**
* Set the value of the saleMan column.
* @param saleman
*/
public void setSaleman(java.lang.String saleman)
{
this.saleman = saleman;
}
/**
* Return the value of the orderType column.
* @return java.lang.String
*/
public java.lang.String getOrdertype()
{
return this.ordertype;
}
/**
* Set the value of the orderType column.
* @param ordertype
*/
public void setOrdertype(java.lang.String ordertype)
{
this.ordertype = ordertype;
}
/**
* Return the value of the orderBrief column.
* @return java.lang.String
*/
public java.lang.String getOrderbrief()
{
return this.orderbrief;
}
/**
* Set the value of the orderBrief column.
* @param orderbrief
*/
public void setOrderbrief(java.lang.String orderbrief)
{
this.orderbrief = orderbrief;
}
/**
* Return the value of the sampleYN column.
* @return java.lang.String
*/
public java.lang.String getSampleyn()
{
return this.sampleyn;
}
/**
* Set the value of the sampleYN column.
* @param sampleyn
*/
public void setSampleyn(java.lang.String sampleyn)
{
this.sampleyn = sampleyn;
}
/**
* Return the value of the deadlineDateTime column.
* @return java.util.Date
*/
public java.util.Date getDeadlinedatetime()
{
return this.deadlinedatetime;
}
/**
* Set the value of the deadlineDateTime column.