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; }
///
/// 编码
///
public string? CodeNum { get; set; }
///
/// 规格型号
///
public string? Specifications { get; set; }
///
/// 计划数量
///
public int? PlanQty { get; set; }
///
/// 发货数量
///
public int? ShipmentQty { get; set; }
///
/// 行扫描率
///
public string? ScanRate { get; set; }
}