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