using iWare.Wms.Core.Util.LowCode.Dto; using System; namespace iWare.Wms.Application { /// /// 库存表输出参数 /// public class WmsMaterialStockOutput { /// /// 物料编号 /// public string Materialno { get; set; } /// /// 物料类别 /// public iWare.Wms.Core.Enum.MaterialType Materialtype { get; set; } /// /// 物料批次 /// public string Materialbatch { get; set; } /// /// 物料名称 /// public string Materialname { get; set; } /// /// 物料规格 /// public string Materialspec { get; set; } /// /// 检验方式 /// public iWare.Wms.Core.Enum.MaterialInspection Inspectionmethod { get; set; } /// /// 单位类别 /// public iWare.Wms.Core.Enum.UnitType Unittype { get; set; } /// /// 单位编号 /// public iWare.Wms.Core.Enum.UnitnoType Unitno { get; set; } /// /// 库存数 /// public decimal Stocknumber { get; set; } /// /// 库位编码 /// public string Placecode { get; set; } /// /// 托盘编码 /// public string Containercode { get; set; } /// /// Id主键 /// public long Id { get; set; } } }