using System; namespace Gs.Warehouse.Models { /// /// 物料入库条码明细 /// public class MesInvItemInCDetails { /// /// 默认值: (newid()) /// public Guid Guid { get; set; } /// /// 入库单id /// public long? ItemInId { get; set; } /// /// 物料条码PSN /// public string ItemBarcode { get; set; } /// /// 客户物料编码(无条码手工录入,有条码为冗余字段) /// public string CItemCode { get; set; } /// /// 客户物料条码 /// public string CItemBarcode { get; set; } /// /// 验收数量 /// public decimal? Quantity { get; set; } /// /// 入库方式(1:有条码,0:无条码) /// 默认值: ((1)) /// public bool? BarcodeFlag { get; set; } /// /// 环保标志(0-非环保,1-环保.无条码手工录入,有条码为冗余字段) /// 默认值: ((1)) /// public bool? EpFlag { get; set; } /// /// 创建人 /// public string CreateBy { get; set; } /// /// 创建时间 /// public DateTime? CreateDate { get; set; } /// /// 最后更新人 /// public string LastupdateBy { get; set; } /// /// 最后更新时间 /// public DateTime? LastupdateDate { get; set; } /// /// 作业方式0-有线条码枪1-无线条码枪 /// public long? WorkType { get; set; } /// /// 本司物料编码(无条码手工录入,有条码为冗余字段) /// public string ItemNo { get; set; } /// /// 厂家批次 /// public string LotNo { get; set; } /// /// 是否共管物料(0:否,1:是) /// 默认值: ((0)) /// public bool? ComanagementFlag { get; set; } /// /// 客户编码 /// public string CustNo { get; set; } /// /// 检验结果 /// public string CheckRes { get; set; } /// /// 进货数量 /// public decimal? CheckQty { get; set; } /// /// 检验状态 /// public string CheckStates { get; set; } /// /// 强制入库标记0无,1-强制入库 退料单使用 /// 默认值: ((0)) /// public bool? ForceInFlag { get; set; } /// /// 仓库编码 /// public string DepotCode { get; set; } /// /// 货位编码 /// public string DepotSectionCode { get; set; } /// /// 特记事项 /// public string Remark { get; set; } /// /// 物料条码 /// public string ItemBarcode2 { get; set; } /// /// 新条码 /// public string ItemBarcode3 { get; set; } /// /// 已使用数量 /// public decimal? UseQty { get; set; } /// /// 出库数量 /// public decimal? OutQty { get; set; } /// /// 物料名称 /// public string ItemSname { get; set; } /// /// 起始位置 /// public int? Spostion { get; set; } /// /// 结束位置 /// public int? Epostion { get; set; } /// /// 检验日期 /// public DateTime? CheckDate { get; set; } /// /// 单位 /// public string Unit { get; set; } /// /// 是否检验 /// 默认值: ((0)) /// public bool? Ischeck { get; set; } /// /// 采购单号 /// public string Ebeln { get; set; } /// /// 批次日期 /// public string LotDate { get; set; } /// /// 发票号 /// public string BillNo { get; set; } /// /// 是否入库成功 /// 默认值: ((0)) /// public bool? StockOk { get; set; } /// /// 工厂 /// public string Factory { get; set; } /// /// 公司 /// public string Company { get; set; } /// /// CB单号 /// public string CbNo { get; set; } /// /// 箱号 /// public string BoxNo { get; set; } /// /// 仓库ID /// public long? DepotId { get; set; } /// /// 货位ID /// public long? DepotSectionId { get; set; } /// /// 行号 /// public string LineNum { get; set; } /// /// 扫描数量 /// public decimal? SmQty { get; set; } /// /// 发货单号 /// public string Vgbel { get; set; } /// /// 行号 /// public long? Kdpos { get; set; } /// /// 作业单号 /// public string WorkNo { get; set; } /// /// 行号 /// public long? EbelnLineNo { get; set; } /// /// CB单号 /// public string CbillNo { get; set; } /// /// 紧急标记 /// public bool? UrgentFlag { get; set; } /// /// 板型 /// public string BoardStyle { get; set; } /// /// 工作行号 /// public int? WorkLine { get; set; } /// /// 任务号 /// public string TaskNo { get; set; } /// /// 供应商编码 /// public string SuppNo { get; set; } /// /// 收货单号 /// public string RbillNo { get; set; } /// /// K3 采购单号 /// public long? EbelnK3id { get; set; } /// /// K3 行号 /// public long? LineK3id { get; set; } /// /// 物料ID /// public long? ItemId { get; set; } } }