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

MedicineKitLocation.cs 441B

12345678910111213141516
  1. using System;
  2. namespace Rdh.ElectronicMedicineKit.Models
  3. {
  4. public class MedicineKitLocation : RootEntity
  5. {
  6. public virtual MedicineKit MedicineKit { get; set; }
  7. public Guid MedicineKitId { get; set; }
  8. public virtual OperationRoom OperationRoom { get; set; }
  9. public Guid OperationRoomId { get; set; }
  10. public int Location { get; set; }
  11. public string Unit { get; set; } = "mm";
  12. }
  13. }