电子药箱通讯服务端
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

MedicineKitLocation.cs 441B

7 månader sedan
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. }