CM_Org.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class CM_Org
  8. {
  9. private string _OrgId;
  10. private string _ParentOrgId;
  11. private string _OrgCode;
  12. private string _OrgName;
  13. private string _FullCode;
  14. private string _FullName;
  15. private string _UserId;
  16. public CM_Org()
  17. {
  18. }
  19. public string OrgId
  20. {
  21. get { return _OrgId; }
  22. set { _OrgId = value; }
  23. }
  24. public string ParentOrgId
  25. {
  26. get { return _ParentOrgId; }
  27. set { _ParentOrgId = value; }
  28. }
  29. public string OrgCode
  30. {
  31. get { return _OrgCode; }
  32. set { _OrgCode = value; }
  33. }
  34. public string OrgName
  35. {
  36. get { return _OrgName; }
  37. set { _OrgName = value; }
  38. }
  39. public string FullCode
  40. {
  41. get { return _FullCode; }
  42. set { _FullCode = value; }
  43. }
  44. public string FullName
  45. {
  46. get { return _FullName; }
  47. set { _FullName = value; }
  48. }
  49. public string UserId
  50. {
  51. get { return _UserId; }
  52. set { _UserId = value; }
  53. }
  54. }
  55. }