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

Item.ext.cs 967B

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 = "IJ";
  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. }