电子药箱通讯服务端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DrugUsageCodes.cs 651B

7 miesięcy temu
12345678910111213141516171819202122232425262728
  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 DrugUsageCodes
  12. {
  13. /// <summary>
  14. /// 未使用
  15. /// </summary>
  16. public const string None = "1";
  17. /// <summary>
  18. /// 已使用
  19. /// </summary>
  20. public const string Used = "2";
  21. /// <summary>
  22. /// 缺失
  23. /// </summary>
  24. public const string Lost = "3";
  25. public const string LastUsed = "4";
  26. }
  27. }