using System; using System.Collections.Generic; using System.Text; namespace APT.MS.Domain.ApiModel.SC.PR { public class DrugCarryRecordModel { public Guid? USER_ID { get; set; } public Guid? DRUG_SET_ID { get; set; } public Guid? SPECIFY_ID { get; set; } public string UNIT { get; set; } public Guid? TYPE_ID { get; set; } public int QTY { get; set; } public string DEPARTMENT_NAME { get; set; } } }