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

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. }