using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Basic.Model { /// /// 管理员登录日志:实体类 /// [Serializable] public class manager_log { #region Model private int _id; private int _user_id; private string _user_name; private string _action_type; private string _note; private string _login_ip; private DateTime _login_time; /// /// 自增ID /// public int id { set { _id = value; } get { return _id; } } /// /// 用户ID /// public int user_id { set { _user_id = value; } get { return _user_id; } } /// /// 用户名 /// public string user_name { set { _user_name = value; } get { return _user_name; } } /// /// 操作类型 /// public string action_type { set { _action_type = value; } get { return _action_type; } } /// /// 备注 /// public string note { set { _note = value; } get { return _note; } } /// /// 登录IP /// public string login_ip { set { _login_ip = value; } get { return _login_ip; } } /// /// 登录时间 /// public DateTime login_time { set { _login_time = value; } get { return _login_time; } } #endregion Model } }