using ChangKeTec.Wms.Models.Enums; namespace ChangKeTec.Wms.Models { public class WmsConfig { public string QAD域 { get; set; } = "CH"; public string QAD地点 { get; set; } = "CH0101"; public string WMS接口数据流水号格式 { get; set; } = "yyMMdd_HHmmss"; public string 二维码格式 { get; set; } = "1"; public string EDI客户编号 { get; set; } = "CHN03"; public string EDI本公司在客户的供应商编号 { get; set; } = "AEHQQ"; public string EDI客户位置 { get; set; } = "3010"; public bool 寄存件在收货时不生成QAD接口 { get; set; } = false; public string 日期时间格式 { get; set; } = "yyyy-MM-dd HH:mm:ss"; public string 标签模板目录 { get; set; } = @"BarcodeTemplate"; public string 单据模板目录 { get; set; } = @"PrintTemplate"; public string 导入模板目录 { get; set; } = @"ImportTemplate"; public string 采购件标签模板 { get; set; } = @"Material.grf"; public string 制造件标签模板 { get; set; } = @"Product.grf"; public string 客户标签模板 { get; set; } = "CustProduct.grf"; public string 唯一码标签模板 { get; set; } = @"Unique.grf"; public string 盘点标签模板 { get; set; } = "Check.grf"; public string 默认零件标签模板 { get; set; } = @"Part.grf"; public string 默认库位标签模板 { get; set; } = @"Location.grf"; public string 半成品标签模板 { get; set; } = "SemiProduct.grf"; public string 默认器具标签模板 { get; set; } = "Eqpt.grf"; public string 默认位置标签模板 { get; set; } = "Cell.grf"; public bool 成品生成报检单 { get; set; } = false; public bool 委外收货生成报检单 { get; set; } = true; public bool 回冲线边库原料 { get; set; } = false; public bool 原料自动确认发料单 { get; set; } = true; public bool 成品自动确认发料单 { get; set; } = true; public bool 使用小车库位 { get; set; } = false; public string 原料小车库位 { get; set; } = "RAW_FORKLIFT"; public string 成品小车库位 { get; set; } = "FG_FORKLIFT"; public string CsAntolinCKPT零件号 { get; set; } = "COCKPIT"; public string CsAntolinCKPT项目编号 { get; set; } = "X261CC"; public string CsAntolinVIN线边库位 { get; set; } = "VIN-WIP"; public string CsAntolinVIN成品库位 { get; set; } = "VIN-FG"; public string CsAntolinVIN销售库位 { get; set; } = "VIN-SALE"; public string CsAntolinCKPT销售订单编号 { get; set; } = "X261CC"; public string 不生成接口数据的零件号列表 { get; set; } = "ELL00095-A,PLL02432-A,FAL00100-A"; public bool 盘点完成自动调整库存 { get; set; } = false; public bool 叫料单自动生成备料单 { get; set; } = false; public string JIT中转库位 { get; set; } = "INSPECT"; public string 空批次编号 { get; set; } = ".999999"; public string 生产叫料库区列表 { get; set; } = $"{ EnumStoreArea.FG},{ EnumStoreArea.HF},{ EnumStoreArea.RAW},{EnumStoreArea.AST}"; public bool 预览打印单据 { get; set; } = true; public bool 按照库存状态变更ERP库位 { get; set; } = false; public bool 线边库去批 { get; set; } = false; public bool 条码包含供应商简称 { get; set; } = false; public string 条码分隔符 { get; set; } = "."; public string 条码序列号格式 { get; set; } = "000000"; public string CqBmpt喷涂上线库 { get; set; } = "3216"; public string CqBmpt预装上线库 { get; set; } = "3222"; public string CqBmpt装配上线库 { get; set; } = "3225"; public string 项目名称 { get; set; } = "锦恒项目"; public string WMS用户名 { get; set; } = "WmsUser"; public string MES用户名 { get; set; } = "MesUser"; public string VIN用户名 { get; set; } = "VinUser"; public string EDI用户名 { get; set; } = "EdiUser"; public string JIS用户名 { get; set; } = "jisUser"; public string PDA按钮行数 { get; set; } = "6"; public string PDA按钮列数 { get; set; } = "2"; public string 订单导出Excel文件密码 { get; set; } = "ChangkeTec2018"; public string 菜单类型 { get; set; } = "Left"; public int 检验单明细数量 { get; set; } = 0; public bool 按零件号拆分检验单 { get; set; } = false; public bool 弹出提示信息 { get; set; } = false; } }