Нет описания

T_Sys_RoleModule.cs 843B

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace XYFDRQ.Model
  6. {
  7. /// <summary>
  8. /// 实体类T_Sys_RoleModule 。(属性说明自动提取数据库字段的描述信息)
  9. /// </summary>
  10. [Serializable]
  11. public class T_Sys_RoleModule
  12. {
  13. public T_Sys_RoleModule()
  14. { }
  15. #region Model
  16. private int _f_roleid;
  17. private int _f_moduleid;
  18. /// <summary>
  19. ///
  20. /// </summary>
  21. public int F_RoleId
  22. {
  23. set { _f_roleid = value; }
  24. get { return _f_roleid; }
  25. }
  26. /// <summary>
  27. ///
  28. /// </summary>
  29. public int F_ModuleId
  30. {
  31. set { _f_moduleid = value; }
  32. get { return _f_moduleid; }
  33. }
  34. #endregion Model
  35. }
  36. }