Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

61 linhas
1.4 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. /// <summary>
  6. /// 管理员权限值
  7. /// </summary>
  8. namespace Basic.Model
  9. {
  10. [Serializable]
  11. public class manager_role_value
  12. {
  13. #region Model
  14. private int _id;
  15. private int _role_id;
  16. private string _channel_name;
  17. private int _channel_id = 0;
  18. private string _action_type;
  19. /// <summary>
  20. /// 自增ID
  21. /// </summary>
  22. public int id
  23. {
  24. set { _id = value; }
  25. get { return _id; }
  26. }
  27. /// <summary>
  28. /// 角色ID
  29. /// </summary>
  30. public int role_id
  31. {
  32. set { _role_id = value; }
  33. get { return _role_id; }
  34. }
  35. /// <summary>
  36. /// 频道名称
  37. /// </summary>
  38. public string channel_name
  39. {
  40. set { _channel_name = value; }
  41. get { return _channel_name; }
  42. }
  43. /// <summary>
  44. /// 频道ID
  45. /// </summary>
  46. public int channel_id
  47. {
  48. set { _channel_id = value; }
  49. get { return _channel_id; }
  50. }
  51. /// <summary>
  52. /// 操作类型
  53. /// </summary>
  54. public string action_type
  55. {
  56. set { _action_type = value; }
  57. get { return _action_type; }
  58. }
  59. #endregion Model
  60. }
  61. }