mh_sms/APT.MS.Domain/ApiModel/SC/PR/DrugCarryRecordModel.cs

19 lines
474 B
C#
Raw Normal View History

2024-01-22 09:17:01 +08:00
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; }
}
}