using System;
namespace Mtxfw.Model
{
///
/// order_product_info:实体类(属性说明自动提取数据库字段的描述信息)
///
[Serializable]
public partial class order_product_info
{
public order_product_info()
{ }
#region Model
private int _id;
private int _pid;
private int _orderid;
private string _selcolor;
private string _guige;
private Double _DJprice;
private Double _Totalprice;
private int _Totalnum;
private DateTime _SubmitTime;
private int _UserID;
private int _IFDelete;
private string _utype;//0订单商品详情
private int _gtype; //类型,0总公司 1分公司 2分公司
///
///
///
public int Id
{
set { _id = value; }
get { return _id; }
}
///
///
///
public int pid
{
set { _pid = value; }
get { return _pid; }
}
///
///
///
public int orderid
{
set { _orderid = value; }
get { return _orderid; }
}
///
///
///
public string selcolor
{
set { _selcolor = value; }
get { return _selcolor; }
}
///
///
///
public string guige
{
set { _guige = value; }
get { return _guige; }
}
///
///
///
public Double DJprice
{
set { _DJprice = value; }
get { return _DJprice; }
}
///
///
///
public Double Totalprice
{
set { _Totalprice = value; }
get { return _Totalprice; }
}
///
///
///
public int Totalnum
{
set { _Totalnum = value; }
get { return _Totalnum; }
}
///
///
///
public DateTime SubmitTime
{
set { _SubmitTime = value; }
get { return _SubmitTime; }
}
///
///
///
public int UserID
{
set { _UserID = value; }
get { return _UserID; }
}
///
///
///
public int IFDelete
{
set { _IFDelete = value; }
get { return _IFDelete; }
}
///
///
///
public string utype
{
set { _utype = value; }
get { return _utype; }
}
///
///
///
public int gtype
{
set { _gtype = value; }
get { return _gtype; }
}
#endregion Model
}
}