You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

81 lines
2.6 KiB

  1. using Learun.Util;
  2. using System.Data;
  3. using System.Collections.Generic;
  4. namespace Learun.Application.TwoDevelopment.EducationalAdministration
  5. {
  6. /// <summary>
  7. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  8. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  9. /// 创 建:超级管理员
  10. /// 日 期:2019-06-17 14:54
  11. /// 描 述:学生处分管理
  12. /// </summary>
  13. public interface StuPunishmentIBLL
  14. {
  15. #region 获取数据
  16. /// <summary>
  17. /// 获取页面显示列表数据
  18. /// <summary>
  19. /// <param name="queryJson">查询参数</param>
  20. /// <returns></returns>
  21. IEnumerable<StuPunishmentEntity> GetPageList(Pagination pagination, string queryJson);
  22. IEnumerable<StuPunishmentEntity> GetAllList();
  23. /// <summary>
  24. /// 获取StuPunishment表实体数据
  25. /// <param name="keyValue">主键</param>
  26. /// <summary>
  27. /// <returns></returns>
  28. StuPunishmentEntity GetStuPunishmentEntity(string keyValue);
  29. #endregion
  30. #region 提交数据
  31. /// <summary>
  32. /// 删除实体数据
  33. /// <param name="keyValue">主键</param>
  34. /// <summary>
  35. /// <returns></returns>
  36. void DeleteEntity(string keyValue);
  37. /// <summary>
  38. /// 保存实体数据(新增、修改)
  39. /// <param name="keyValue">主键</param>
  40. /// <summary>
  41. /// <returns></returns>
  42. void SaveEntity(string keyValue, StuPunishmentEntity entity);
  43. #endregion
  44. #region 扩展数据
  45. /// <summary>
  46. /// 获取学年学期列表
  47. /// </summary>
  48. /// <returns></returns>
  49. IEnumerable<WebHelper.YearGrade> GetAcademicAndSemesterList();
  50. /// <summary>
  51. /// 获取页面显示列表数据
  52. /// <summary>
  53. /// <param name="queryJson">查询参数</param>
  54. /// <returns></returns>
  55. IEnumerable<StuPunishmentEntity> GetPunishmentListByStuNo(string acdemic, string semester, string stuNo);
  56. /// <summary>
  57. /// 获取页面显示列表数据
  58. /// <summary>
  59. /// <param name="queryJson">查询参数</param>
  60. /// <returns></returns>
  61. IEnumerable<StuPunishmentEntity> GetPunishmentListByStuNo(string stuNo);
  62. /// <summary>
  63. /// 解除处分
  64. /// <param name="keyValue">主键</param>
  65. /// <summary>
  66. /// <returns></returns>
  67. void DoCancelPunish(string keyValue, bool status, string File,string CancelFileNo);
  68. #endregion
  69. }
  70. }