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

MedicineKit.cs 463B

12345678910111213
  1. using System.Collections.Generic;
  2. namespace Rdh.ElectronicMedicineKit.Models
  3. {
  4. public class MedicineKit : RootEntity
  5. {
  6. public string Code { get; set; }
  7. public MedicineKitTypes KitType { get; set; } = MedicineKitTypes.¼±¾È;
  8. public virtual List<MedicineKitLocation> Locations { get; set; } = new List<MedicineKitLocation>();
  9. public virtual List<MedicineKitStock> Stocks { get; set; } = new List<MedicineKitStock>();
  10. }
  11. }