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

DrugBatch.cs 357B

1234567891011121314
  1. using System;
  2. namespace Rdh.ElectronicMedicineKit.Models
  3. {
  4. public class DrugBatch : RootEntity
  5. {
  6. public string BatchCode { get; set; }
  7. public DateTime? ManufactureDate { get; set; }
  8. public DateTime ExpiryDate { get; set; }
  9. public virtual DrugInfo Drug { get; set; }
  10. public Guid DrugId { get; set; }
  11. }
  12. }