123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CoreEntity.Entity
- {
- [Serializable]
- public class CM_OrgManModule
- {
- private string _OrgId;
- private string _OrgManModuleId;
- private string _ModuleId;
- public CM_OrgManModule()
- {
- }
- public string OrgId
- {
- get { return _OrgId; }
- set { _OrgId = value; }
- }
- public string OrgManModuleId
- {
- get { return _OrgManModuleId; }
- set { _OrgManModuleId = value; }
- }
- public string ModuleId
- {
- get { return _ModuleId; }
- set { _ModuleId = value; }
- }
- }
- }
|