AreaModel.cs 1011 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. //----------------------------------------------------------------
  6. //Module Name: $safeprojectname$
  7. //Purpose:
  8. //CopyRight: Muchinfo
  9. //History:
  10. //----------------------------------------------------------------
  11. //DateTime 2017/4/7 17:59:50
  12. //Author
  13. //Description Create
  14. //----------------------------------------------------------------
  15. using Muchinfo.MTPClient.Data.Helper;
  16. namespace Muchinfo.MTPClient.Data.Model.Account
  17. {
  18. public class AreaModel
  19. {
  20. /// <summary>
  21. /// 机构ID
  22. /// </summary>
  23. [PropertyDisc("AreaId")]
  24. public int areaid { get; set; }
  25. /// <summary>
  26. /// 机构名称
  27. /// </summary>
  28. [PropertyDisc("AREANAME")]
  29. public string AreaName { get; set; }
  30. /// <summary>
  31. /// 运营中心类型
  32. /// </summary>
  33. [PropertyDisc("operationroles")]
  34. public int OperationRoles { get; set; }
  35. }
  36. }