mh_sms/APT.MS.Domain/ApiModel/SC/PR/DrugCarryRecordModel.cs
2024-04-12 16:50:28 +08:00

19 lines
474 B
C#

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