12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CoreEntity.Entity
- {
- [Serializable]
- public class CM_Org
- {
- private string _OrgId;
- private string _ParentOrgId;
- private string _OrgCode;
- private string _OrgName;
- private string _FullCode;
- private string _FullName;
- private string _UserId;
- public CM_Org()
- {
- }
- public string OrgId
- {
- get { return _OrgId; }
- set { _OrgId = value; }
- }
- public string ParentOrgId
- {
- get { return _ParentOrgId; }
- set { _ParentOrgId = value; }
- }
- public string OrgCode
- {
- get { return _OrgCode; }
- set { _OrgCode = value; }
- }
- public string OrgName
- {
- get { return _OrgName; }
- set { _OrgName = value; }
- }
- public string FullCode
- {
- get { return _FullCode; }
- set { _FullCode = value; }
- }
- public string FullName
- {
- get { return _FullName; }
- set { _FullName = value; }
- }
- public string UserId
- {
- get { return _UserId; }
- set { _UserId = value; }
- }
- }
- }
|