using System; namespace MES.Service.Modes { /// /// /// public class MesInvItemOutItems { /// /// 物料编号 /// public string ItemNo { get; set; } /// /// 申请数量 /// public decimal? Quantity { get; set; } /// /// /// public string CreateBy { get; set; } /// /// /// public DateTime? CreateDate { get; set; } /// /// /// public string LastupdateBy { get; set; } /// /// /// public DateTime? LastupdateDate { get; set; } /// /// 备注信息 /// public string Remark { get; set; } /// /// /// public string Factory { get; set; } /// /// /// public string Company { get; set; } /// /// 推介仓库 /// public string DepotCode { get; set; } /// /// 推介库位 /// public string DepotSectionCode { get; set; } /// /// /// public string TaskNo { get; set; } /// /// 到货单号 /// public string WorkNo { get; set; } /// /// 到货单行号 /// public int? WorkLine { get; set; } /// /// ERP 主表ID /// public int? ErpId { get; set; } /// /// ERP 从表ID /// public int? ErpAutoid { get; set; } /// /// ERP_料号 /// public string ErpItemNo { get; set; } /// /// 颜色 /// public string ColorName { get; set; } /// /// 最新下载更新标识 /// 默认值: ((1)) /// public int? UpdateFlg { get; set; } /// /// 采购单ID /// public int? EbelnK3id { get; set; } /// /// 采购单行ID /// public int? LineK3id { get; set; } /// /// 采购单号 /// 默认值: ('0') /// public string Ebeln { get; set; } /// /// 采购订单行号 /// public int? EbelnLine { get; set; } /// /// 采购订单数量 /// public decimal? EbelnQty { get; set; } /// /// 产品编号 /// public string BoardItem { get; set; } /// /// /// public int? FType { get; set; } /// /// /// 默认值: ((0)) /// public int? Status { get; set; } /// /// 子子表ID /// public int? Allocateid { get; set; } /// /// 领料编号/生产工单 /// public string PbillNo { get; set; } /// /// erp接口返回 /// public string ErpMark { get; set; } /// /// 入库单号 /// public string RkNo { get; set; } /// /// 已入库数 /// public int? RkQty { get; set; } /// /// 已扫数量 /// public int? TlQty { get; set; } /// /// 物料ID /// public long? ItemId { get; set; } /// /// 物料投料单ID(发料扫码使用) /// public int? ItemDabid { get; set; } /// /// /// 默认值: (newid()) /// public Guid Guid { get; set; } /// /// 出库ID /// public Guid? ItemOutId { get; set; } public string ItemName { get; set; } public string ItemModel { get; set; } public decimal KtQty { get; set; } /// /// RK_LINE /// public Guid AboutGuid { get; set; } public string ItemUnit { get; set; } } }