电子药箱通讯服务端
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.

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections;
  3. using System.Runtime.Serialization;
  4. using System.ComponentModel;
  5. using System.Collections.Generic;
  6. namespace RDH.Data.Models
  7. {
  8. public partial class Item
  9. {
  10. public class ItemTypes
  11. {
  12. public const string Normal = "普通";
  13. public const string Emergency = "抢救";
  14. public const string Anesthesia = "毒麻";
  15. public const string MentalOne = "精一";
  16. public const string MentalTwo = "精二";
  17. //public const string Taking = "镇痛";
  18. public const string MedicalImte = "耗材";
  19. /// <summary>
  20. /// 表示存储在设备冷藏抽屉中的药品(不包括外部冰箱药品)
  21. /// </summary>
  22. public const String Cold = "冷藏";
  23. public static string MentalOrAnesthesia()
  24. {
  25. return string.Format("{0} {1} {2}", Anesthesia, MentalOne, MentalTwo);
  26. }
  27. }
  28. }
  29. }