?? ordersentity.cs
字號:
?using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace VinciDataAccess.Entity
{
/// <summary>
/// Name:Wicresoft's Vinci Item
/// Author:Tony Tong
/// Time:2008.2.20
/// </summary>
public class OrdersEntity
{
#region The Orders Table'Column
#region the propertiy of OrderID
private int _orderID;
#endregion
#region the propertiy of CustomerID
private int _customerID;
#endregion
#region the propertiy of EmployeeID
private int _employeeID;
#endregion
#region the propertiy of OrderDate
private Nullable<System.DateTime> _orderDate;
#endregion
#region the propertiy of RequiredDate
private Nullable<System.DateTime> _requiredDate;
#endregion
#region the propertiy of OrderNote;
private string _orderNote;
#endregion
#region the propertiy of OrderCreaterID
private Nullable<int> _orderCreaterID;
#endregion
#region the propertiy of StorehouseReadyDate
private Nullable<System.DateTime> _storehouseReadyDate;
#endregion
#region the propertiy of StorehouseNote
private string _storehouseNote;
#endregion
#region the propertiy of StorehouseAccepterID
private Nullable<int> _storehouseAccepterID;
#endregion
#region the propertiy of Carrier
private string _carrier;
#endregion
#region the propertiy of TransportOrderID
private Nullable<int> _transportOrderID;
#endregion
#region the propertiy of TransportDate
private Nullable<System.DateTime> _transportDate;
#endregion
#region the propertiy of TransportNote
private string _transportNote;
#endregion
#region the propertiy of TransportInfoInputerID
private Nullable<int> _transportInfoInputerID;
#endregion
#region the propertiy of ArrivalDate
private Nullable<System.DateTime> _arrivalDate;
#endregion
#region the propertiy of Receiver
private string _receiver;
#endregion
#region the propertiy of ReceiveNote
private string _receiveNote;
#endregion
#region the propertiy of ReceiveInfoInputerID
private Nullable<int> _receiveInfoInputerID;
#endregion
#region the propertiy of OrderCloseDate
private Nullable<System.DateTime> _orderCloseDate;
#endregion
#region the propertiy of OrderCloseAccepterID
private Nullable<int> _orderCloseAccepterID;
#endregion
#region the propertiy of OrgID
private int _orgID;
#endregion
public int OrderID
{
get
{
return _orderID;
}
set
{
_orderID = value;
}
}
public int CustomerID
{
get
{
return _customerID;
}
set
{
_customerID = value;
}
}
public int EmployeeID
{
get
{
return _employeeID;
}
set
{
_employeeID = value;
}
}
public Nullable<System.DateTime> OrderDate
{
get
{
return _orderDate;
}
set
{
_orderDate = value;
}
}
public Nullable<System.DateTime> RequiredDate
{
get
{
return _requiredDate;
}
set
{
_requiredDate = value;
}
}
public string OrderNote
{
get
{
return _orderNote;
}
set
{
_orderNote = value;
}
}
public Nullable<int> OrderCreaterID
{
get
{
return _orderCreaterID;
}
set
{
_orderCreaterID = value;
}
}
public Nullable<System.DateTime> StorehouseReadyDate
{
get
{
return _storehouseReadyDate;
}
set
{
_storehouseReadyDate = value;
}
}
public string StorehouseNote
{
get
{
return _storehouseNote;
}
set
{
_storehouseNote = value;
}
}
public Nullable<int> StorehouseAccepterID
{
get
{
return _storehouseAccepterID;
}
set
{
_storehouseAccepterID = value;
}
}
public string Carrier
{
get
{
return _carrier;
}
set
{
_carrier = value;
}
}
public Nullable<int> TransportOrderID
{
get
{
return _transportOrderID;
}
set
{
_transportOrderID = value;
}
}
public Nullable<System.DateTime> TransportDate
{
get
{
return _transportDate;
}
set
{
_transportDate = value;
}
}
public string TransportNote
{
get
{
return _transportNote;
}
set
{
_transportNote = value;
}
}
public Nullable<int> TransportInfoInputerID
{
get
{
return _transportInfoInputerID;
}
set
{
_transportInfoInputerID = value;
}
}
public Nullable<System.DateTime> ArrivalDate
{
get
{
return _arrivalDate;
}
set
{
_arrivalDate = value;
}
}
public string Receiver
{
get
{
return _receiver;
}
set
{
_receiver = value;
}
}
public string ReceiveNote
{
get
{
return _receiveNote;
}
set
{
_receiveNote = value;
}
}
public Nullable<int> ReceiveInfoInputerID
{
get
{
return _receiveInfoInputerID;
}
set
{
_receiveInfoInputerID = value;
}
}
public Nullable<System.DateTime> OrderCloseDate
{
get
{
return _orderCloseDate;
}
set
{
_orderCloseDate = value;
}
}
public Nullable<int> OrderCloseAccepterID
{
get
{
return _orderCloseAccepterID;
}
set
{
_orderCloseAccepterID = value;
}
}
public int OrgID
{
get
{
return _orgID;
}
set
{
_orgID = value;
}
}
#endregion
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -