电子药箱通讯服务端
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

UserRoleCodes.cs 625B

před 7 měsíci
123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Rdh.SocketServer.Client.Models
  7. {
  8. /// <summary>
  9. /// 标识用户角色的结构
  10. /// </summary>
  11. public struct UserRoleCodes
  12. {
  13. /// <summary>
  14. /// 麻醉医生
  15. /// </summary>
  16. public const string Anesthesiologist = "01";
  17. /// <summary>
  18. /// 药剂师
  19. /// </summary>
  20. public const string Pharmacist = "02";
  21. /// <summary>
  22. /// 其他
  23. /// </summary>
  24. public const string Other = "03";
  25. }
  26. }