12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- using System;
- using System.Collections.Generic;
- using System.Threading;
- using System.Linq;
- using System.Data;
- using MySystem;
- using MySystem.PxcModels;
- using Library;
- using LitJson;
- public class WifiCheckHelper
- {
- public readonly static WifiCheckHelper Instance = new WifiCheckHelper();
- private WifiCheckHelper()
- {
- }
- public void Start()
- {
- Thread th = new Thread(DoWorks);
- th.IsBackground = true;
- th.Start();
- }
- private void DoWorks()
- {
- while (true)
- {
- try
- {
- if(DateTime.Now.AddMonths(1).Day == 1 && DateTime.Now.Hour > 22)
- {
- DoSomething();
- }
- Thread.Sleep(900000);
- }
- catch (Exception ex)
- {
- function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "WIFI检查异常");
- }
- }
- }
- public void DoSomething()
- {
- string Month = DateTime.Now.ToString("yyyyMM");
- string chk = function.ReadInstance("/wifi/check" + Month + ".txt");
- if(!string.IsNullOrEmpty(chk))
- {
- return;
- }
- function.WritePage("/wifi/", "check" + Month + ".txt", DateTime.Now.ToString());
- WebCMSEntities db = new WebCMSEntities();
- MySystem.JavaProductModels.WebCMSEntities javadb = new MySystem.JavaProductModels.WebCMSEntities();
- int i = 0;
- List<WifiTradeRecord> trades = db.WifiTradeRecord.Where(m => m.Duration > m.DoMonths).ToList();
- foreach(WifiTradeRecord trade in trades)
- {
- i += 1;
- javadb.KxsMachineThali.Add(new MySystem.JavaProductModels.KxsMachineThali()
- {
- MonthTime = int.Parse(Month),
- PosSn = trade.SnNo,
- BrandId = trade.BrandId,
- CreateTime = DateTime.Now,
- });
- if(i % 200 == 0)
- {
- javadb.SaveChanges();
- }
- }
- javadb.SaveChanges();
- javadb.Dispose();
- db.Dispose();
- }
- }
|