StableVersion4.3/HL_FristAidPlatform_Help/Model/ContinueAddDrugModel.cs

26 lines
522 B
C#

using System;
namespace HL_FristAidPlatform_Help
{
public class ContinueAddDrugModel
{
public string ManagementGUID { get; set; }
/// <summary>
/// 有效期
/// </summary>
public DateTime TermOfValidity { get; set; }
/// <summary>
/// 入库数量
/// </summary>
public int Inventory { get; set; }
/// <summary>
/// 入库操作人
/// </summary>
public long CheckInUserID { get; set; }
}
}