ApiControllerBase.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. using CZFW.Core;
  2. using CZFW.Framework.Interface;
  3. using CZFW.Framework.Model.Entity;
  4. using CZFW.Framework.Model.ViewModel;
  5. using Microsoft.AspNetCore.Mvc;
  6. using System;
  7. using System.Collections.Generic;
  8. namespace CZFW.Framework.WebApi
  9. {
  10. public class ApiControllerBase<TEntity> : AbstractApiController
  11. where TEntity : EntityBase, new()
  12. {
  13. protected ILogicBase<TEntity> _baseLogic;
  14. [HttpGet]
  15. public virtual TableModel<TEntity> Table(int pageIndex = 1, int pageSize = 20)
  16. {
  17. var model = new TableModel<TEntity>();
  18. int rowsCount = 0;
  19. var data = _baseLogic.GetEntities(pageSize, pageIndex, out rowsCount);
  20. model.SetData(data);
  21. model.Pager = new PagerModel(rowsCount, pageIndex, pageSize);
  22. model.TableHeads = PropertyHelper.Get(typeof(TEntity));
  23. return model;
  24. }
  25. [HttpGet]
  26. public virtual IList<TEntity> GetList(int pageIndex = 1, int pageSize = 20)
  27. {
  28. var data = _baseLogic.GetEntities(pageSize, pageIndex, out int rowsCount);
  29. return data;
  30. }
  31. /// <summary>
  32. /// 编辑获取查看试图
  33. /// </summary>
  34. /// <param name="id"></param>
  35. /// <returns></returns>
  36. [HttpGet]
  37. public virtual FormModel<TEntity> View(int id)
  38. {
  39. var entity = _baseLogic.GetEntity(id);
  40. var properties = PropertyHelper.Get(typeof(TEntity));
  41. return new FormModel<TEntity>() { Model = entity, Properties = properties };
  42. }
  43. /// <summary>
  44. /// 添加获取视图
  45. /// </summary>
  46. /// <returns></returns>
  47. [HttpGet]
  48. public virtual object Add()
  49. {
  50. var properties = PropertyHelper.Get(typeof(TEntity));
  51. return properties;
  52. }
  53. /// <summary>
  54. /// 编辑保存
  55. /// </summary>
  56. /// <param name="form"></param>
  57. /// <returns></returns>
  58. [HttpPost]
  59. public virtual ResultModel Edit([FromBody] TEntity form)
  60. {
  61. var res = _baseLogic.EditEntity(form);
  62. _baseLogic.ExcuteSql($"INSERT INTO operationlog(`Time`,`Type`,`UserId`,`UserName`)VALUES('{Utility.GetNowString()}','修改',{CurrentUser.UserId},'{CurrentUser.UserName}')");
  63. return res;
  64. }
  65. /// <summary>
  66. /// 添加保存
  67. /// </summary>
  68. /// <param name="form"></param>
  69. /// <returns></returns>
  70. [HttpPost]
  71. public virtual ResultModel Add([FromBody]TEntity form)
  72. {
  73. _baseLogic.ExcuteSql($"INSERT INTO operationlog(`Time`,`Type`,`UserId`,`UserName`)VALUES('{Utility.GetNowString()}','新增',{CurrentUser.UserId},'{CurrentUser.UserName}')");
  74. var res = _baseLogic.AddEntity(form);
  75. return res;
  76. }
  77. [HttpPut]
  78. public virtual ResultModel AddList([FromBody] IList<TEntity> from)
  79. {
  80. var res = _baseLogic.AddEntities(from);
  81. return res;
  82. }
  83. [HttpPost]
  84. public virtual ResultModel Remove(int id)
  85. {
  86. _baseLogic.ExcuteSql($"INSERT INTO operationlog(`Time`,`Type`,`UserId`,`UserName`)VALUES('{Utility.GetNowString()}','删除',{CurrentUser.UserId},'{CurrentUser.UserName}')");
  87. var res = _baseLogic.RemoveEntity(id);
  88. return res;
  89. }
  90. }
  91. }