using System; namespace Mtxfw.Model { /// /// user_cart:实体类(属性说明自动提取数据库字段的描述信息) /// [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拼团购买 1单独购买 private int _gtype; /// /// /// public long Id { set{ _id=value;} get{return _id;} } /// /// /// public int poid { set { _poid = value; } get { return _poid; } } /// /// /// public int ProductID { set { _ProductID = value; } get { return _ProductID; } } /// /// /// public int ProductNum { set { _ProductNum = value; } get { return _ProductNum; } } /// /// /// public string selcolor { set { _selcolor = value; } get { return _selcolor; } } /// /// /// public string guige { set { _guige = value; } get { return _guige; } } /// /// /// public string CartId { set { _CartId = value; } get { return _CartId; } } /// /// /// public int ttype { set { _ttype = value; } get { return _ttype; } } /// /// /// public int gtype { set { _gtype = value; } get { return _gtype; } } #endregion Model } }