DataUploadMJYJob.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. //using log4net;
  2. //using Quartz;
  3. //using RDIFramework.Utilities;
  4. //using System;
  5. //using System.Collections.Generic;
  6. //using System.Configuration;
  7. //using System.Data;
  8. //using System.Globalization;
  9. //using System.IO;
  10. //using System.Linq;
  11. //using System.Net;
  12. //using System.Text;
  13. //using System.Web.Script.Serialization;
  14. //namespace TimedUpload.QuartzJobs
  15. //{
  16. // /// <summary>
  17. // /// 2020-10-30 闽江源数据对接(新天集抄平台)
  18. // /// </summary>
  19. // [DisallowConcurrentExecution]
  20. // public class DataUploadMJYJob : IJob
  21. // {
  22. // private readonly ILog log = LogManager.GetLogger(typeof(IJob));
  23. // public void Execute(IJobExecutionContext context)
  24. // {
  25. // log.Info("抄表数据上传和达任务开始执行.................\r\n");
  26. // try
  27. // {
  28. // string now = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss", DateTimeFormatInfo.InvariantInfo);
  29. // string uploadTime = ConfigurationManager.AppSettings["uploadTime"];
  30. // string meterType = ConfigurationManager.AppSettings["meterType"];
  31. // string realS = ConfigurationManager.AppSettings["realS"];
  32. // #region 有现远传水表
  33. // String sql = "SELECT 表地址,表读数,ReviseDT FROM [Bsc_MeterInfo] where ReviseDT > '" + uploadTime + "'";
  34. // DataTable dt = dbHelper.Fill(sql);
  35. // int rowCount = dt.Rows.Count;
  36. // StringBuilder requestBody = new StringBuilder();
  37. // int sucessNum = 0;
  38. // for (int i = 0;i < rowCount; i++)
  39. // {
  40. // string result = "";
  41. // try
  42. // {
  43. // requestBody.Clear();
  44. // long date = (Convert.ToDateTime(dt.Rows[i]["ReviseDT"]).ToUniversalTime().Ticks - 621355968000000000) / 10000000;
  45. // requestBody.Append("{\"deviceId\":\"").Append(dt.Rows[i]["表地址"]).Append("\",");
  46. // requestBody.Append("\"type\":\"").Append(meterType).Append("\",");
  47. // requestBody.Append("\"real\":[{\"s\":\"").Append(realS).Append("\",");
  48. // requestBody.Append("\"v\":").Append(Convert.ToDouble(dt.Rows[i]["表读数"])).Append(",");
  49. // requestBody.Append("\"t\":").Append(date).Append("}]}");
  50. // result = WebHelper.HttpWebRequest(Constants.uploadUrl, requestBody.ToString(), "POST", "application/json");
  51. // sucessNum++;
  52. // }
  53. // catch (Exception)
  54. // {
  55. // log.Info("上传抄表数据:" + requestBody.ToString());
  56. // log.Info("上传抄表数据接口返回结果:" + result);
  57. // }
  58. // }
  59. // UpdateUploadTime(now);
  60. // log.Info("抄表数据共" + rowCount + "条数据,上传成功" + sucessNum + "条.................\r\n");
  61. // #endregion
  62. // }
  63. // catch (Exception ex)
  64. // {
  65. // log.Error("抄表数据上传任务异常:" + ex.Message);
  66. // }
  67. // log.InfoFormat("抄表数据上传任务执行结束.................\r\n");
  68. // }
  69. // /// <summary>
  70. // /// 更新配置文件中的更新数据时间
  71. // /// </summary>
  72. // /// <param name="time"></param>
  73. // private void UpdateUploadTime(string time)
  74. // {
  75. // var cfg = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
  76. // cfg.AppSettings.Settings["uploadTime"].Value = time;
  77. // cfg.Save();
  78. // ConfigurationManager.RefreshSection("appSettings");
  79. // }
  80. // static IDbProvider dbHelper
  81. // {
  82. // get
  83. // {
  84. // var DbDefine = DbFactoryProvider.GetProvider(CurrentDbType.SqlServer, Constants.DBUrl);
  85. // return DbDefine;
  86. // }
  87. // }
  88. // }
  89. //}