using iWare.Wms.Core.Enum; using iWare.Wms.Core; using iWare.Wms.Core.Util.LowCode.Dto; using Microsoft.EntityFrameworkCore; using System; namespace iWare.Wms.Application { /// /// 库存表输出参数 /// public class WmsMaterialStockOutput { #region ///// ///// 物料编号 ///// //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; } #endregion /// /// 库存Id /// public long? Id { get; set; } /// /// 库区名称 /// public string LocTypeName { get; set; } /// /// 库位Code /// public string WareLocationCode { get; set; } /// /// 容器Code /// public string WareContainerCode { get; set; } /// /// 排 /// public int? Row { get; set; } /// /// 巷道 /// public int? Lane { get; set; } /// /// 物料编码 /// public string WareMaterialCode { get; set; } /// /// 物料名称 /// public string WareMaterialName { get; set; } /// /// 入库单 /// public string OrdersNo { get; set; } /// /// 单据类型 /// public string OrderType { get; set; } /// /// 采购单号(PO) /// public string PurchaseNo { get; set; } /// /// 送货单号 /// public string DeliveryNo { get; set; } /// /// 收货单 /// public string CollectNo { get; set; } /// /// 物料数量 /// public decimal? Quantity { get; set; } /// /// 物料单位 /// public string Unit { get; set; } /// /// 项目批次号 /// public string ItemBatchNo { get; set; } /// /// 备注 /// public string Remarks { get; set; } /// /// 是否锁定 /// public bool? IsLocked { get; set; } /// /// 批次号 /// public string BatchNo { get; set; } /// /// 托盘类型编码 /// public string ContainerType { get; set; } /// /// 库存状态 /// public string StockStatus { get; set; } /// /// 是否空托 /// public bool? IsEmptyContainer { get; set; } /// /// 伸位 /// public DeepcellNoEnum? DeepcellNo { get; set; } /// /// 伸位号 /// public string UnionCode { get; set; } /// /// 零件号 /// public string PartCode { get; set; } /// /// 零件名称 /// public string PartName { get; set; } /// /// 绑定库位 /// public string RealLocationCode { get; set; } /// /// 生产线 /// public LineTypeEnum? LineType { get; set; } /// /// 车型 /// public string CarType { get; set; } } }