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

MedicineKitConfig.cs 383B

123456789101112131415
  1. using System;
  2. namespace Rdh.ElectronicMedicineKit.Models
  3. {
  4. public class MedicineKitConfig : RootEntity
  5. {
  6. public MedicineKitTypes KitType { get; set; } = MedicineKitTypes.¼±¾È;
  7. public virtual DrugInfo Drug { get; set; }
  8. public Guid DrugId { get; set; }
  9. public int MaxAmount { get; set; }
  10. public int? WarnAmount { get; set; }
  11. }
  12. }