StatDataLogService.cs 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. // /*
  2. // * 数据计算日志
  3. // */
  4. // using System;
  5. // using System.Collections.Generic;
  6. // using System.Linq;
  7. // using System.Data;
  8. // using MySystem.Models.Main;
  9. // using Library;
  10. // using LitJson;
  11. // namespace MySystem.Service.Main
  12. // {
  13. // public class StatDataLogService
  14. // {
  15. // string _conn = "";
  16. // public StatDataLogService()
  17. // {
  18. // _conn = ConfigurationManager.AppSettings["SqlConnStr"].ToString();
  19. // }
  20. // /// <summary>
  21. // /// 查询列表
  22. // /// </summary>
  23. // /// <param name="relationData">关联表</param>
  24. // /// <param name="condition">查询条件(sql语句)</param>
  25. // /// <param name="count">总数(输出)</param>
  26. // /// <param name="page">页码</param>
  27. // /// <param name="limit">每页条数</param>
  28. // /// <returns></returns>
  29. // public List<Dictionary<string, object>> List(List<RelationData> relationData, string condition, out int count, int page = 1, int limit = 30, string orderBy = "Sort desc,Id desc")
  30. // {
  31. // List<string> fields = new List<string>(); //要显示的列
  32. // fields.Add("Id");
  33. // fields.Add("CreateDate"); //添加时间
  34. // fields.Add("Status"); //状态
  35. // fields.Add("Gategory"); //分类
  36. // fields.Add("IsCondition"); //领取人是否满足条件
  37. // fields.Add("GetUserId"); //领取人
  38. // Dictionary<string, object> obj = new DbService(AppConfig.Base.dbTables, _conn).IndexData("StatDataLog", relationData, orderBy, page, limit, condition, fields);
  39. // List<Dictionary<string, object>> diclist = obj["data"] as List<Dictionary<string, object>>;
  40. // count = int.Parse(obj["count"].ToString());
  41. // return diclist;
  42. // }
  43. // public List<Dictionary<string, object>> List(List<RelationData> relationData, string condition, int page = 1, int limit = 30, string orderBy = "Sort desc,Id desc")
  44. // {
  45. // List<string> fields = new List<string>(); //要显示的列
  46. // fields.Add("Id");
  47. // fields.Add("CreateDate"); //添加时间
  48. // fields.Add("Status"); //状态
  49. // fields.Add("Gategory"); //分类
  50. // fields.Add("IsCondition"); //领取人是否满足条件
  51. // fields.Add("GetUserId"); //领取人
  52. // Dictionary<string, object> obj = new DbService(AppConfig.Base.dbTables, _conn).IndexData("StatDataLog", relationData, orderBy, page, limit, condition, fields);
  53. // List<Dictionary<string, object>> diclist = obj["data"] as List<Dictionary<string, object>>;
  54. // return diclist;
  55. // }
  56. // /// <summary>
  57. // /// 查询一条记录
  58. // /// </summary>
  59. // /// <param name="Id">主键Id</param>
  60. // /// <returns></returns>
  61. // public StatDataLog Query(int Id)
  62. // {
  63. // WebCMSEntities db = new WebCMSEntities();
  64. // StatDataLog editData = db.StatDataLog.FirstOrDefault(m => m.Id == Id) ?? new StatDataLog();
  65. // db.Dispose();
  66. // return editData;
  67. // }
  68. // /// <summary>
  69. // /// 查询记录数
  70. // /// </summary>
  71. // /// <param name="Id">主键Id</param>
  72. // /// <returns></returns>
  73. // public int Count(string condition = "")
  74. // {
  75. // int result = 0;
  76. // DataTable dt = CustomerSqlConn.dtable("select count(Id) from StatDataLog where 1=1" + condition, _conn);
  77. // if(dt.Rows.Count > 0)
  78. // {
  79. // result = int.Parse(function.CheckInt(dt.Rows[0][0].ToString()));
  80. // }
  81. // return result;
  82. // }
  83. // /// <summary>
  84. // /// 查询是否存在
  85. // /// </summary>
  86. // /// <param name="Id">主键Id</param>
  87. // /// <returns></returns>
  88. // public bool Exist(int Id)
  89. // {
  90. // WebCMSEntities db = new WebCMSEntities();
  91. // bool check = db.StatDataLog.Any(m => m.Id == Id);
  92. // db.Dispose();
  93. // return check;
  94. // }
  95. // /// <summary>
  96. // /// 添加数据
  97. // /// </summary>
  98. // /// <param name="Fields">要设置的字段</param>
  99. // /// <returns></returns>
  100. // public AppResultJson Add(Dictionary<string, object> fields, bool check = true)
  101. // {
  102. // if(check)
  103. // {
  104. // }
  105. // int Id = new DbService(AppConfig.Base.dbTables, _conn).Add("StatDataLog", fields, 0);
  106. // return new AppResultJson(){ Status = "1", Data = Id };
  107. // }
  108. // /// <summary>
  109. // /// 修改数据
  110. // /// </summary>
  111. // /// <param name="Fields">要设置的字段</param>
  112. // /// <param name="Id">主键Id</param>
  113. // public AppResultJson Edit(Dictionary<string, object> fields, int Id, bool check = true)
  114. // {
  115. // if(check)
  116. // {
  117. // }
  118. // new DbService(AppConfig.Base.dbTables, _conn).Edit("StatDataLog", fields, Id);
  119. // return new AppResultJson(){ Status = "1", Data = Id };
  120. // }
  121. // /// <summary>
  122. // /// 逻辑删除
  123. // /// </summary>
  124. // /// <param name="Id">主键Id</param>
  125. // public void Remove(int Id)
  126. // {
  127. // Dictionary<string, object> fields = new Dictionary<string, object>();
  128. // fields.Add("Status", -1);
  129. // new DbService(AppConfig.Base.dbTables, _conn).Edit("StatDataLog", fields, Id);
  130. // }
  131. // /// <summary>
  132. // /// 删除数据
  133. // /// </summary>
  134. // /// <param name="Id">主键Id</param>
  135. // public void Delete(int Id)
  136. // {
  137. // new DbService(AppConfig.Base.dbTables, _conn).Delete("StatDataLog", Id);
  138. // }
  139. // /// <summary>
  140. // /// 排序
  141. // /// </summary>
  142. // /// <param name="Id">主键Id</param>
  143. // /// <param name="Sort">排序序号</param>
  144. // public void Sort(int Id, int Sort)
  145. // {
  146. // new DbService(AppConfig.Base.dbTables, _conn).Sort("StatDataLog", Sort, Id);
  147. // }
  148. // /// <summary>
  149. // /// 导入数据
  150. // /// </summary>
  151. // /// <param name="ExcelData">json数据</param>
  152. // public void Import(string ExcelData)
  153. // {
  154. // WebCMSEntities db = new WebCMSEntities();
  155. // JsonData list = JsonMapper.ToObject(ExcelData);
  156. // for (int i = 1; i < list.Count;i++ )
  157. // {
  158. // JsonData dr = list[i];
  159. // db.StatDataLog.Add(new StatDataLog()
  160. // {
  161. // CreateDate = DateTime.Now,
  162. // UpdateDate = DateTime.Now,
  163. // });
  164. // db.SaveChanges();
  165. // }
  166. // db.Dispose();
  167. // }
  168. // /// <summary>
  169. // /// 导出excel表格
  170. // /// </summary>
  171. // /// <param name="fields">查询条件(单个字段)</param>
  172. // /// <param name="condition">查询条件(sql语句)</param>
  173. // /// <returns></returns>
  174. // // public void ExportExcel(List<RelationData> relationData, string condition)
  175. // // {
  176. // // }
  177. // }
  178. // }