using JY.Model.Excel; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JY.Model { public class SystemConfig { #region MES使用 /// /// 工厂代码 /// public string siteCode { get; set; } /// ///产线名称 /// public string lineCode { get; set; } /// /// 设备编码 /// public string equipCode { get; set; } /// /// 物料编码 /// public string materialCode { get; set; } /// /// 产品型号 /// public string productType { get; set; } /// /// 分档查询接口地址 /// public string GradingMesUrl = "http://10.17.128.206/core/api/public/eve/pm/eqm/grading"; /// /// 结果加工参数接口地址 /// public string ResultProcessMesUrl = "http://10.17.128.205/core/api/public/product/process/param/new/result"; /// /// 产品进站接口地址 /// public string StationArrivalUrl = "http://127.0.0.1"; /// /// 产品出站接口地址 /// public string StationExitUrl = "http://127.0.0.1"; /// /// MES登录接口地址 /// public string LoginMesUrl = "http://127.0.0.1"; /// /// 设备报警接口地址 /// public string EquipAlarmUrl = "http://127.0.0.1"; public List CollectItemCfgList { get; set; } = new List(); #endregion #region 分档使用 /// /// 档位一 /// public string Grading1 = ""; /// /// 档位一 /// public string Grading2 = ""; /// /// 档位一 /// public string Grading3 = ""; /// /// 档位一 /// public string Grading4 = ""; #endregion /// /// MES上传超时时间 /// public double MesRequestTime = 2; /// /// 权限时间 /// public int LoginTime = 0; /// /// 是否上传MES /// public bool isUpMes { get; set; } /// /// 员工账号 /// public string userName = ""; } }