97 lines
2.0 KiB
C#
97 lines
2.0 KiB
C#
|
|
using System;
|
|||
|
|
namespace Mtxfw.Model
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// user_cart:ʵ<><CAB5><EFBFBD><EFBFBD>(<28><><EFBFBD><EFBFBD>˵<EFBFBD><CBB5><EFBFBD>Զ<EFBFBD><D4B6><EFBFBD>ȡ<EFBFBD><C8A1><EFBFBD>ݿ<EFBFBD><DDBF>ֶε<D6B6><CEB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ)
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public partial class user_cart
|
|||
|
|
{
|
|||
|
|
#region Model
|
|||
|
|
private long _id;
|
|||
|
|
private int _poid;
|
|||
|
|
private int _ProductID;
|
|||
|
|
private int _ProductNum;
|
|||
|
|
private string _selcolor;
|
|||
|
|
private string _guige;
|
|||
|
|
private string _CartId;
|
|||
|
|
private int _ttype;//0ƴ<30>Ź<EFBFBD><C5B9><EFBFBD> 1<><31><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
private int _gtype;
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public long Id
|
|||
|
|
{
|
|||
|
|
set{ _id=value;}
|
|||
|
|
get{return _id;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int poid
|
|||
|
|
{
|
|||
|
|
set { _poid = value; }
|
|||
|
|
get { return _poid; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int ProductID
|
|||
|
|
{
|
|||
|
|
set { _ProductID = value; }
|
|||
|
|
get { return _ProductID; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int ProductNum
|
|||
|
|
{
|
|||
|
|
set { _ProductNum = value; }
|
|||
|
|
get { return _ProductNum; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string selcolor
|
|||
|
|
{
|
|||
|
|
set { _selcolor = value; }
|
|||
|
|
get { return _selcolor; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string guige
|
|||
|
|
{
|
|||
|
|
set { _guige = value; }
|
|||
|
|
get { return _guige; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public string CartId
|
|||
|
|
{
|
|||
|
|
set { _CartId = value; }
|
|||
|
|
get { return _CartId; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int ttype
|
|||
|
|
{
|
|||
|
|
set { _ttype = value; }
|
|||
|
|
get { return _ttype; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public int gtype
|
|||
|
|
{
|
|||
|
|
set { _gtype = value; }
|
|||
|
|
get { return _gtype; }
|
|||
|
|
}
|
|||
|
|
#endregion Model
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|