using iWare.Wms.Core.Util.LowCode.Dto; using Microsoft.EntityFrameworkCore; using System; namespace iWare.Wms.Application { /// /// 物料信息输出参数 /// public class WmsMaterialOutput { /// /// 物料名称 /// public string Materialname { get; set; } /// /// 物料编号 /// public string Materialno { get; set; } /// /// 物料批次 /// public string Materialbatch { get; set; } /// /// 描述 /// public string Description { get; set; } /// /// 检验方式 /// public iWare.Wms.Core.Enum.MaterialInspection Inspectionmethod { get; set; } /// /// 物料类别 /// public iWare.Wms.Core.Enum.MaterialType Materialtype { get; set; } /// /// 物料规格 /// public string Materialspec { get; set; } /// /// 单位类别 /// public iWare.Wms.Core.Enum.UnitType Unittype { get; set; } /// /// 单位编号 /// public iWare.Wms.Core.Enum.UnitnoType Unitno { get; set; } /// /// 安全存量 /// public decimal Safeqty { get; set; } /// /// 是否关键物料 /// public iWare.Wms.Core.YesOrNot Keymaterials { get; set; } /// /// Erp单号 /// public string Erpno { get; set; } /// /// 图号 /// public string Graphno { get; set; } /// /// 品管类别 /// public string Qccategory { get; set; } /// /// 保质期 /// public float Warranty { get; set; } /// /// 最大存量 /// public decimal Maximumqty { get; set; } /// /// 最小库龄 /// public float Minstorageage { get; set; } /// /// 最大库龄 /// public float Maxstorageage { get; set; } /// /// 用户自定义字段02 /// public string UserDefined01 { get; set; } /// /// 用户自定义字段02 /// public string UserDefined02 { get; set; } /// /// /// public float UserDefined03 { get; set; } /// /// /// public float UserDefined04 { get; set; } /// /// /// public decimal UserDefined05 { get; set; } /// /// /// public decimal UserDefined06 { get; set; } /// /// /// public DateTimeOffset UserDefined07 { get; set; } /// /// /// public DateTimeOffset UserDefined08 { get; set; } /// /// Id主键 /// public long Id { get; set; } /// /// 长(mm) /// public decimal? Length { get; set; } /// /// 宽(mm) /// public decimal? Width { get; set; } /// /// 高(mm) /// public decimal? Height { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 车型 /// public string WareContainerTypeCode { get; set; } } }