DigitalFactory/Admin.NET/Admin.NET.Application/Service/MaterialList/Dto/MaterialListOutput.cs

41 lines
717 B
C#

namespace Admin.NET.Application;
/// <summary>
/// 物料列表输出参数
/// </summary>
public class MaterialListOutput
{
/// <summary>
/// 主键Id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 物料ID
/// </summary>
public long? MaterialsId { get; set; }
/// <summary>
/// 单位
/// </summary>
public string? Unit { get; set; }
/// <summary>
/// 数量
/// </summary>
public int? Count { get; set; }
/// <summary>
/// 来源ID
/// </summary>
public long? SourceId { get; set; }
/// <summary>
/// 备注
/// </summary>
public string? Remarks { get; set; }
}