/// <summary> /// 初始化指标ID--指标名称的映射表 /// </summary> /// <param name="table"></param> private static Dictionary <string, string> IndexIdToName() { Dictionary <string, string> indexIdToName = new Dictionary <string, string>(); string in_sql = "select Indicatorid,Indicatorname from Angel_Indicator"; DataTable ind = MySqlHelpers.GetDataTable(in_sql); for (int i = 0; i < ind.Rows.Count; i++) { indexIdToName.Add(ind.Rows[i][0].ToString(), ind.Rows[i][1].ToString()); } //string fileName = "IndexIdToName.xml"; //string filePath = AppDomain.CurrentDomain.BaseDirectory + "Config\\";//获取基目录 //string file = filePath + fileName; //XmlDocument document = new XmlDocument(); //document.Load(file); //XmlNode root = document.SelectSingleNode("/config"); //if (root != null) //{ // XmlNodeList itemList = root.SelectNodes("item"); // string id = "", name = ""; // foreach (XmlNode item in itemList) // { // id = item.Attributes["id"].Value; // name = item.Attributes["name"].Value; // indexIdToName.Add(id, name); // } //} return(indexIdToName); }
/// <summary> /// 新增方法传入json方式 /// </summary> /// <param name="param"></param> /// <returns>DataTable</returns> public DataTable GetDataTableToParamID(Dictionary <string, Newtonsoft.Json.Linq.JArray> param) { Dictionary <string, Dimention> report = GetReport(); string sql = string.Empty; DataTable dt = null; List <string> repSql = new List <string>(); string tableName = string.Empty; try { if (param != null) { foreach (var d in param) { Dimention dimention = report[d.Key]; tableName = dimention.TabName; sql = dimention.SqlAll; foreach (var arry in d.Value) { int i = 0; ////替换后的sql语句 foreach (var o in Newtonsoft.Json.Linq.JObject.FromObject(arry)) { sql = sql.Replace("[@c" + i + "]", o.Value.ToString()); i = i + 1; } } } } // if() dt = MySqlHelpers.GetDataTable(sql); dt.TableName = tableName; } catch (Exception ex) { FileLog.WriteLog(ex.ToString()); } if (dt != null) { return(dt); } else { return(null); } }
/// <summary> /// 直接返回datatable 此情况在执行单个语句,替换多个条件 /// </summary> /// <param name="TabId"></param> /// <param name="where1"></param> /// <param name="where2"></param> /// <returns></returns> public DataTable GetDataTableToIDWhere(string TabId, string where1, string where2) { Dictionary <string, Dimention> report = GetReport(); Dimention dimention = report[TabId]; string sql = ""; DataTable dt = null; sql = dimention.SqlAll.Replace("%Where1%", where1).Replace("%Where2%", where2).Trim(); dt = MySqlHelpers.GetDataTable(sql); if (dt != null) { return(dt); } else { return(null); } }
/// <summary> /// 登录日志列表 /// </summary> /// <param name="time">查询条件</param> /// <returns></returns> public List <LoginLogModel> SelectLoginLOG(string time, int PageIndex, int PageSize) { List <LoginLogModel> logs = new List <LoginLogModel>(); try { Dictionary <string, string> values = new Dictionary <string, string>(); string sql; if (time != null) { values = XmlHelper.ReadXml("SqlQuery", "getqueryloginlog"); sql = string.Format(values.First().Value, PageIndex, PageIndex * (PageSize - 1), time); } else { values = XmlHelper.ReadXml("SqlQuery", "selectloginloglist"); sql = string.Format(values.First().Value, PageIndex, PageSize); } DataTable dt = MySqlHelpers.GetDataTable(sql); foreach (DataRow row in dt.Rows) { LoginLogModel log = new LoginLogModel(); log.ID = Convert.ToInt32(row["id"].ToString()); log.UserID = Convert.ToInt32(row["userid"].ToString()); log.UserName = row["username"].ToString(); log.RoleID = Convert.ToInt32(row["roleid"].ToString()); log.RoleName = row["rolename"].ToString(); log.ClientIP = row["clientip"].ToString(); log.CreateUser = row["createuser"].ToString(); log.LoginTime = Convert.ToDateTime(row["logintime"].ToString()); log.CreateTime = Convert.ToDateTime(row["createtime"].ToString()); logs.Add(log); } } catch (Exception er) { FileLog.WriteLog("异常捕捉:Angel.Service.LoginLogService" + er.ToString()); } return(logs); }
// POST api/userapi/post public HttpResponseMessage Post([FromBody] string value) { string username = UtilFunction.GetCookie("uname"); string userid = UtilFunction.GetCookie("uid"); var list = Newtonsoft.Json.Linq.JObject.Parse(value.Replace("{admin}", username).Replace("{1}", userid)); Dictionary <string, JArray> dict = new Dictionary <string, JArray>(); try { FileLog.WriteLog("InfoApiTime:" + DateTime.Now.ToString() + ",调用:QcSystem.ControllersApi/ControllerApi/DownloadListManagerApiController/Post([FromBody]string value)方法"); string serverName = ""; Newtonsoft.Json.Linq.JArray jArray = new JArray(); if (list != null && list.Count > 0) { foreach (var arry in list) { switch (arry.Key) { case "insert": serverName = "insertDownloadList"; break; case "delete7daysBefore": serverName = "delete7daysBefore"; break; default: break; } jArray = arry.Value as JArray; } } if (serverName == "delete7daysBefore") { string selectSql = "SELECT username, filename FROM Angel_DownloadList where datediff('" + value.Split('"')[7] + "', createtime)>=" + value.Split('"')[4].Split(':')[1].Split(',')[0] + " and username = '******'"')[11] + "';"; DataTable dt = MySqlHelpers.GetDataTable(selectSql); string uname = string.Empty, filename = string.Empty, filepath = string.Empty; if (dt != null && dt.Rows.Count != 0) { foreach (DataRow row in dt.Rows) { uname = row["username"].ToString(); filename = row["filename"].ToString(); //从磁盘上删除文件 filepath = AppDomain.CurrentDomain.BaseDirectory + "DownFile\\import\\" + uname + "\\" + filename; File.Delete(filepath); } } else { return(GetJSONMessage("{\"code\": {\"id\":-1,\"msg\":\"数据库不存在要删除的数据!\"}}")); } } return(GetJSONMessage(QueryService.InsertBatchCheck(jArray, serverName))); } catch (Exception er) { FileLog.WriteLog("Error:调用 QcSystem.ControllersApi/ControllerApi/DownloadListManagerApiController/Post([FromBody]string value)方法," + er.ToString()); return(GetJSONMessage("")); } }
public DataTable GetResult(string sql) { return(MySqlHelpers.GetDataTable(sql)); }