Mem_AreaRegion.cs 722 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class Mem_AreaRegion
  8. {
  9. private string _areacode;
  10. private string _areaname;
  11. private string _parentcode;
  12. public Mem_AreaRegion()
  13. {
  14. }
  15. public string AreaCode
  16. {
  17. get { return _areacode; }
  18. set { _areacode = value; }
  19. }
  20. public string AreaName
  21. {
  22. get { return _areaname; }
  23. set { _areaname = value; }
  24. }
  25. public string ParentCode
  26. {
  27. get { return _parentcode; }
  28. set { _parentcode = value; }
  29. }
  30. }
  31. }