using System; using System.Collections.Generic; using System.Linq; using System.Web; /// /// 管理员权限值 /// namespace Basic.Model { [Serializable] public class manager_role_value { #region Model private int _id; private int _role_id; private string _channel_name; private int _channel_id = 0; private string _action_type; /// /// 自增ID /// public int id { set { _id = value; } get { return _id; } } /// /// 角色ID /// public int role_id { set { _role_id = value; } get { return _role_id; } } /// /// 频道名称 /// public string channel_name { set { _channel_name = value; } get { return _channel_name; } } /// /// 频道ID /// public int channel_id { set { _channel_id = value; } get { return _channel_id; } } /// /// 操作类型 /// public string action_type { set { _action_type = value; } get { return _action_type; } } #endregion Model } }