AppVideoListService.cs 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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 AppVideoListService
  14. {
  15. string _conn = "";
  16. public AppVideoListService()
  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("Title"); //标题
  36. fields.Add("VideoId"); //视频分类Id
  37. Dictionary<string, object> obj = new DbService(AppConfig.Base.dbTables, _conn).IndexData("AppVideoList", relationData, orderBy, page, limit, condition, fields);
  38. List<Dictionary<string, object>> diclist = obj["data"] as List<Dictionary<string, object>>;
  39. count = int.Parse(obj["count"].ToString());
  40. return diclist;
  41. }
  42. public List<Dictionary<string, object>> List(List<RelationData> relationData, string condition, int page = 1, int limit = 30, string orderBy = "Sort desc,Id desc")
  43. {
  44. List<string> fields = new List<string>(); //要显示的列
  45. fields.Add("Id");
  46. fields.Add("CreateDate"); //添加时间
  47. fields.Add("Status"); //状态
  48. fields.Add("Title"); //标题
  49. fields.Add("VideoId"); //视频分类Id
  50. Dictionary<string, object> obj = new DbService(AppConfig.Base.dbTables, _conn).IndexData("AppVideoList", relationData, orderBy, page, limit, condition, fields);
  51. List<Dictionary<string, object>> diclist = obj["data"] as List<Dictionary<string, object>>;
  52. return diclist;
  53. }
  54. /// <summary>
  55. /// 查询一条记录
  56. /// </summary>
  57. /// <param name="Id">主键Id</param>
  58. /// <returns></returns>
  59. public AppVideoList Query(int Id)
  60. {
  61. WebCMSEntities db = new WebCMSEntities();
  62. AppVideoList editData = db.AppVideoList.FirstOrDefault(m => m.Id == Id) ?? new AppVideoList();
  63. db.Dispose();
  64. return editData;
  65. }
  66. /// <summary>
  67. /// 查询记录数
  68. /// </summary>
  69. /// <param name="Id">主键Id</param>
  70. /// <returns></returns>
  71. public int Count(string condition = "")
  72. {
  73. int result = 0;
  74. DataTable dt = CustomerSqlConn.dtable("select count(Id) from AppVideoList where 1=1" + condition, _conn);
  75. if(dt.Rows.Count > 0)
  76. {
  77. result = int.Parse(function.CheckInt(dt.Rows[0][0].ToString()));
  78. }
  79. return result;
  80. }
  81. /// <summary>
  82. /// 查询是否存在
  83. /// </summary>
  84. /// <param name="Id">主键Id</param>
  85. /// <returns></returns>
  86. public bool Exist(int Id)
  87. {
  88. WebCMSEntities db = new WebCMSEntities();
  89. bool check = db.AppVideoList.Any(m => m.Id == Id);
  90. db.Dispose();
  91. return check;
  92. }
  93. /// <summary>
  94. /// 添加数据
  95. /// </summary>
  96. /// <param name="Fields">要设置的字段</param>
  97. /// <returns></returns>
  98. public AppResultJson Add(Dictionary<string, object> fields, bool check = true)
  99. {
  100. if(check)
  101. {
  102. if (string.IsNullOrEmpty(fields["Title"].ToString()))
  103. {
  104. return new AppResultJson() { Status = "-1", Info = "请填写标题" };
  105. }
  106. if (string.IsNullOrEmpty(fields["VideoUrl"].ToString()))
  107. {
  108. return new AppResultJson() { Status = "-1", Info = "请填写视频地址" };
  109. }
  110. if (string.IsNullOrEmpty(fields["BgPic"].ToString()))
  111. {
  112. return new AppResultJson() { Status = "-1", Info = "请填写背景图" };
  113. }
  114. }
  115. int Id = new DbService(AppConfig.Base.dbTables, _conn).Add("AppVideoList", fields, 0);
  116. return new AppResultJson(){ Status = "1", Data = Id };
  117. }
  118. /// <summary>
  119. /// 修改数据
  120. /// </summary>
  121. /// <param name="Fields">要设置的字段</param>
  122. /// <param name="Id">主键Id</param>
  123. public AppResultJson Edit(Dictionary<string, object> fields, int Id, bool check = true)
  124. {
  125. if(check)
  126. {
  127. if (string.IsNullOrEmpty(fields["Title"].ToString()))
  128. {
  129. return new AppResultJson() { Status = "-1", Info = "请填写标题" };
  130. }
  131. if (string.IsNullOrEmpty(fields["VideoUrl"].ToString()))
  132. {
  133. return new AppResultJson() { Status = "-1", Info = "请填写视频地址" };
  134. }
  135. if (string.IsNullOrEmpty(fields["BgPic"].ToString()))
  136. {
  137. return new AppResultJson() { Status = "-1", Info = "请填写背景图" };
  138. }
  139. }
  140. new DbService(AppConfig.Base.dbTables, _conn).Edit("AppVideoList", fields, Id);
  141. return new AppResultJson(){ Status = "1", Data = Id };
  142. }
  143. /// <summary>
  144. /// 逻辑删除
  145. /// </summary>
  146. /// <param name="Id">主键Id</param>
  147. public void Remove(int Id)
  148. {
  149. Dictionary<string, object> fields = new Dictionary<string, object>();
  150. fields.Add("Status", -1);
  151. new DbService(AppConfig.Base.dbTables, _conn).Edit("AppVideoList", fields, Id);
  152. }
  153. /// <summary>
  154. /// 删除数据
  155. /// </summary>
  156. /// <param name="Id">主键Id</param>
  157. public void Delete(int Id)
  158. {
  159. new DbService(AppConfig.Base.dbTables, _conn).Delete("AppVideoList", Id);
  160. }
  161. /// <summary>
  162. /// 排序
  163. /// </summary>
  164. /// <param name="Id">主键Id</param>
  165. /// <param name="Sort">排序序号</param>
  166. public void Sort(int Id, int Sort)
  167. {
  168. new DbService(AppConfig.Base.dbTables, _conn).Sort("AppVideoList", Sort, Id);
  169. }
  170. /// <summary>
  171. /// 导入数据
  172. /// </summary>
  173. /// <param name="ExcelData">json数据</param>
  174. public void Import(string ExcelData)
  175. {
  176. WebCMSEntities db = new WebCMSEntities();
  177. JsonData list = JsonMapper.ToObject(ExcelData);
  178. for (int i = 1; i < list.Count;i++ )
  179. {
  180. JsonData dr = list[i];
  181. db.AppVideoList.Add(new AppVideoList()
  182. {
  183. CreateDate = DateTime.Now,
  184. UpdateDate = DateTime.Now,
  185. });
  186. db.SaveChanges();
  187. }
  188. db.Dispose();
  189. }
  190. /// <summary>
  191. /// 导出excel表格
  192. /// </summary>
  193. /// <param name="fields">查询条件(单个字段)</param>
  194. /// <param name="condition">查询条件(sql语句)</param>
  195. /// <returns></returns>
  196. // public void ExportExcel(List<RelationData> relationData, string condition)
  197. // {
  198. // }
  199. }
  200. }