using System; namespace Mtxfw.Model { /// /// user_info:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class user_BusinessHours { public user_BusinessHours() { } #region Model private Int64 _id; private int _MemberId;//会员ID private string _Starttime;//开始时间 private int _EndtimeType;//结束时间类型0当天1第2天 private string _Endtime;//结束时间 private int _utype;//0营业时间 private DateTime _addtime;//添加时间 private int _gtype; //类型 /// /// /// public Int64 Id { set { _id = value; } get { return _id; } } /// /// /// public int MemberId { set { _MemberId = value; } get { return _MemberId; } } /// /// /// public int EndtimeType { set { _EndtimeType = value; } get { return _EndtimeType; } } /// /// /// public string Starttime { set { _Starttime = value; } get { return _Starttime; } } /// /// /// public string Endtime { set { _Endtime = value; } get { return _Endtime; } } /// /// utype /// public int utype { set { _utype = value; } get { return _utype; } } /// /// utype /// public DateTime addtime { set { _addtime = value; } get { return _addtime; } } /// /// /// public int gtype { set { _gtype = value; } get { return _gtype; } } #endregion Model } }