📄 abstracttmsorder.java
字号:
/*
* WARNING: DO NOT EDIT THIS FILE. This is a generated file that is synchronized
* by MyEclipse Hibernate tool integration.
*
* Created Fri Oct 19 14:00:05 CST 2007 by MyEclipse Hibernate Tool.
*/
package com.pegasus.app.tms.pojo.vo;
import java.io.Serializable;
/**
* A class that represents a row in the tms_order table.
* You can customize the behavior of this class by editing the class, {@link TmsOrder()}.
* WARNING: DO NOT EDIT THIS FILE. This is a generated file that is synchronized
* by MyEclipse Hibernate tool integration.
*/
public abstract class AbstractTmsOrder
extends com.pegasus.framework.pojo.AbstractBusinessObject
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.Long id;
/** The value of the tmsOrderDetailCargoSet one-to-many association. */
private java.util.List tmsOrderDetailCargoList;
/** The value of the simple corpId property. */
private java.lang.Long corpId;
/** The value of the simple orderCode property. */
private java.lang.String orderCode;
/** The value of the simple orderDate property. */
private java.util.Date orderDate;
/** The value of the simple signinId property. */
private java.lang.Long signinId;
/** The value of the simple eta property. */
private java.util.Date eta;
/** The value of the simple transportType property. */
private java.lang.Long transportType;
/** The value of the simple etd property. */
private java.util.Date etd;
/** The value of the simple consignType property. */
private java.lang.Long consignType;
/** The value of the simple consigner property. */
private java.lang.Long consigner;
/** The value of the simple originAddress property. */
private java.lang.String originAddress;
/** The value of the simple allFee property. */
private java.lang.Double allFee;
/** The value of the simple destAddress property. */
private java.lang.String destAddress;
/** The value of the simple status property. */
private java.lang.String status;
/** The value of the simple operator property. */
private java.lang.String operator;
/** The value of the simple dept property. */
private java.lang.String dept;
/** The value of the simple createdId property. */
private java.lang.Long createdId;
/** The value of the simple createdName property. */
private java.lang.String createdName;
/** The value of the simple createdDate property. */
private java.util.Date createdDate;
/** The value of the simple cseAddress1 property. */
private java.lang.String cseAddress1;
/** The value of the simple cseAddress4 property. */
private java.lang.String cseAddress4;
/** The value of the simple effectedDate property. */
private java.util.Date effectedDate;
/** The value of the simple csePost property. */
private java.lang.String csePost;
/** The value of the simple cseContactId property. */
private java.lang.Long cseContactId;
/** The value of the simple cseAddress2 property. */
private java.lang.String cseAddress2;
/** The value of the simple modifiedId property. */
private java.lang.Long modifiedId;
/** The value of the simple csePhone property. */
private java.lang.String csePhone;
/** The value of the simple modifiedDate property. */
private java.util.Date modifiedDate;
/** The value of the simple cseName property. */
private java.lang.String cseName;
/** The value of the simple cseAddress3 property. */
private java.lang.String cseAddress3;
/** The value of the simple invalidDate property. */
private java.util.Date invalidDate;
/** The value of the simple modifiedName property. */
private java.lang.String modifiedName;
/** The value of the simple deleted property. */
private java.lang.String deleted;
/** The value of the simple cseContactName property. */
private java.lang.String cseContactName;
/** The value of the simple cseAddress5 property. */
private java.lang.String cseAddress5;
/** The value of the simple consignee property. */
private java.lang.Long consignee;
/** The value of the simple csrContactName property. */
private java.lang.String csrContactName;
/** The value of the simple csrContactId property. */
private java.lang.Long csrContactId;
/** The value of the simple csrPost property. */
private java.lang.String csrPost;
/** The value of the simple csrName property. */
private java.lang.String csrName;
/** The value of the simple csrPhone property. */
private java.lang.String csrPhone;
/** The value of the simple csrAddress1 property. */
private java.lang.String csrAddress1;
/** The value of the simple csrAddress2 property. */
private java.lang.String csrAddress2;
/** The value of the simple csrAddress3 property. */
private java.lang.String csrAddress3;
/** The value of the simple csrAddress4 property. */
private java.lang.String csrAddress4;
/** The value of the simple csrAddress5 property. */
private java.lang.String csrAddress5;
/**
* Simple constructor of AbstractTmsOrder instances.
*/
public AbstractTmsOrder()
{
}
/**
* Constructor of AbstractTmsOrder instances given a simple primary key.
* @param id
*/
public AbstractTmsOrder(java.lang.Long id)
{
this.setId(id);
}
/**
* Return the simple primary key value that identifies this object.
* @return java.lang.Long
*/
public java.lang.Long getId()
{
return id;
}
/**
* Set the simple primary key value that identifies this object.
* @param id
*/
public void setId(java.lang.Long id)
{
this.hashValue = 0;
this.id = id;
}
/**
* Return the value of the corp_id column.
* @return java.lang.Long
*/
public java.lang.Long getCorpId()
{
return this.corpId;
}
/**
* Set the value of the corp_id column.
* @param corpId
*/
public void setCorpId(java.lang.Long corpId)
{
this.corpId = corpId;
}
/**
* Return the value of the order_code column.
* @return java.lang.String
*/
public java.lang.String getOrderCode()
{
return this.orderCode;
}
/**
* Set the value of the order_code column.
* @param orderCode
*/
public void setOrderCode(java.lang.String orderCode)
{
this.orderCode = orderCode;
}
/**
* Return the value of the order_date column.
* @return java.util.Date
*/
public java.util.Date getOrderDate()
{
return this.orderDate;
}
/**
* Set the value of the order_date column.
* @param orderDate
*/
public void setOrderDate(java.util.Date orderDate)
{
this.orderDate = orderDate;
}
/**
* Return the value of the signin_id column.
* @return java.lang.Long
*/
public java.lang.Long getSigninId()
{
return this.signinId;
}
/**
* Set the value of the signin_id column.
* @param signinId
*/
public void setSigninId(java.lang.Long signinId)
{
this.signinId = signinId;
}
/**
* Return the value of the eta column.
* @return java.util.Date
*/
public java.util.Date getEta()
{
return this.eta;
}
/**
* Set the value of the eta column.
* @param eta
*/
public void setEta(java.util.Date eta)
{
this.eta = eta;
}
/**
* Return the value of the transport_type column.
* @return java.lang.Long
*/
public java.lang.Long getTransportType()
{
return this.transportType;
}
/**
* Set the value of the transport_type column.
* @param transportType
*/
public void setTransportType(java.lang.Long transportType)
{
this.transportType = transportType;
}
/**
* Return the value of the etd column.
* @return java.util.Date
*/
public java.util.Date getEtd()
{
return this.etd;
}
/**
* Set the value of the etd column.
* @param etd
*/
public void setEtd(java.util.Date etd)
{
this.etd = etd;
}
/**
* Return the value of the consign_type column.
* @return java.lang.Long
*/
public java.lang.Long getConsignType()
{
return this.consignType;
}
/**
* Set the value of the consign_type column.
* @param consignType
*/
public void setConsignType(java.lang.Long consignType)
{
this.consignType = consignType;
}
/**
* Return the value of the consigner column.
* @return java.lang.Long
*/
public java.lang.Long getConsigner()
{
return this.consigner;
}
/**
* Set the value of the consigner column.
* @param consigner
*/
public void setConsigner(java.lang.Long consigner)
{
this.consigner = consigner;
}
/**
* Return the value of the origin_address column.
* @return java.lang.String
*/
public java.lang.String getOriginAddress()
{
return this.originAddress;
}
/**
* Set the value of the origin_address column.
* @param originAddress
*/
public void setOriginAddress(java.lang.String originAddress)
{
this.originAddress = originAddress;
}
/**
* Return the value of the all_fee column.
* @return java.lang.Double
*/
public java.lang.Double getAllFee()
{
return this.allFee;
}
/**
* Set the value of the all_fee column.
* @param allFee
*/
public void setAllFee(java.lang.Double allFee)
{
this.allFee = allFee;
}
/**
* Return the value of the dest_address column.
* @return java.lang.String
*/
public java.lang.String getDestAddress()
{
return this.destAddress;
}
/**
* Set the value of the dest_address column.
* @param destAddress
*/
public void setDestAddress(java.lang.String destAddress)
{
this.destAddress = destAddress;
}
/**
* Return the value of the status column.
* @return java.lang.String
*/
public java.lang.String getStatus()
{
return this.status;
}
/**
* Set the value of the status column.
* @param status
*/
public void setStatus(java.lang.String status)
{
this.status = status;
}
/**
* Return the value of the operator column.
* @return java.lang.String
*/
public java.lang.String getOperator()
{
return this.operator;
}
/**
* Set the value of the operator column.
* @param operator
*/
public void setOperator(java.lang.String operator)
{
this.operator = operator;
}
/**
* Return the value of the dept column.
* @return java.lang.String
*/
public java.lang.String getDept()
{
return this.dept;
}
/**
* Set the value of the dept column.
* @param dept
*/
public void setDept(java.lang.String dept)
{
this.dept = dept;
}
/**
* Return the value of the created_id column.
* @return java.lang.Long
*/
public java.lang.Long getCreatedId()
{
return this.createdId;
}
/**
* Set the value of the created_id column.
* @param createdId
*/
public void setCreatedId(java.lang.Long createdId)
{
this.createdId = createdId;
}
/**
* Return the value of the created_name column.
* @return java.lang.String
*/
public java.lang.String getCreatedName()
{
return this.createdName;
}
/**
* Set the value of the created_name column.
* @param createdName
*/
public void setCreatedName(java.lang.String createdName)
{
this.createdName = createdName;
}
/**
* Return the value of the created_date column.
* @return java.util.Date
*/
public java.util.Date getCreatedDate()
{
return this.createdDate;
}
/**
* Set the value of the created_date column.
* @param createdDate
*/
public void setCreatedDate(java.util.Date createdDate)
{
this.createdDate = createdDate;
}
/**
* Return the value of the cse_address1 column.
* @return java.lang.String
*/
public java.lang.String getCseAddress1()
{
return this.cseAddress1;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -