using System; namespace Mtxfw.Model { /// /// user_bank:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class user_Goods { #region Model private int _id; private int _GoodsLB;//产品分类 private string _GoodsName;//产品名称 private string _GoodsPic;//预览图片 private string _GoodsUrl;//跳转URL private string _GoodsBody;//产品详情 private Double _GoodsPrices;//产品价格 private Double _GoodsPrices0;//市场价格 private Double _GoodsPrices1;// private Double _GoodsPrices2;// private string _starttime;//开始时间 private string _endtime;//结束时间 private int _GoodsKC;//产品库存 private int _GoodsNum;//多少件配送 private int _GoodsZT;//状态 private int _GoodsOrders;//产品订购数量 private DateTime _AddTime;//添加时间 private int _utype;//类型0注册产品1购买产品2后台图片3积分商城图片4商城首页图片5商城次页图片6新手学堂图片7图片8图片9图片10礼物图标 private int _gtype; /// /// /// public int Id { set{ _id=value;} get{return _id;} } /// /// /// public int GoodsLB { set { _GoodsLB = value; } get { return _GoodsLB; } } /// /// /// public string GoodsName { set { _GoodsName = value; } get { return _GoodsName; } } /// /// /// public string GoodsPic { set { _GoodsPic = value; } get { return _GoodsPic; } } /// /// /// public string GoodsUrl { set { _GoodsUrl = value; } get { return _GoodsUrl; } } /// /// /// public string GoodsBody { set { _GoodsBody = value; } get { return _GoodsBody; } } /// /// /// public Double GoodsPrices { set { _GoodsPrices = value; } get { return _GoodsPrices; } } /// /// /// public Double GoodsPrices0 { set { _GoodsPrices0 = value; } get { return _GoodsPrices0; } } /// /// /// public Double GoodsPrices1 { set { _GoodsPrices1 = value; } get { return _GoodsPrices1; } } /// /// /// public Double GoodsPrices2 { set { _GoodsPrices2 = value; } get { return _GoodsPrices2; } } /// /// /// public string starttime { set { _starttime = value; } get { return _starttime; } } /// /// /// public string endtime { set { _endtime = value; } get { return _endtime; } } /// /// /// public int GoodsKC { set { _GoodsKC = value; } get { return _GoodsKC; } } /// /// /// public int GoodsNum { set { _GoodsNum = value; } get { return _GoodsNum; } } /// /// /// public int GoodsZT { set { _GoodsZT = value; } get { return _GoodsZT; } } /// /// /// public int GoodsOrders { set { _GoodsOrders = value; } get { return _GoodsOrders; } } /// /// /// public DateTime AddTime { set { _AddTime = value; } get { return _AddTime; } } /// /// /// public int utype { set { _utype = value; } get { return _utype; } } /// /// /// public int gtype { set { _gtype = value; } get { return _gtype; } } #endregion Model } }