CM_OrgManPermission.cs 721 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class CM_OrgManModule
  8. {
  9. private string _OrgId;
  10. private string _OrgManModuleId;
  11. private string _ModuleId;
  12. public CM_OrgManModule()
  13. {
  14. }
  15. public string OrgId
  16. {
  17. get { return _OrgId; }
  18. set { _OrgId = value; }
  19. }
  20. public string OrgManModuleId
  21. {
  22. get { return _OrgManModuleId; }
  23. set { _OrgManModuleId = value; }
  24. }
  25. public string ModuleId
  26. {
  27. get { return _ModuleId; }
  28. set { _ModuleId = value; }
  29. }
  30. }
  31. }