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.
 
 
 
 
 
 

84 lines
2.7 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-02-21 16:53
  11. /// 描 述:学生学籍
  12. /// </summary>
  13. public interface StuInfoBasicIBLL
  14. {
  15. #region 获取数据
  16. /// <summary>
  17. /// 获取页面显示列表数据
  18. /// <summary>
  19. /// <param name="queryJson">查询参数</param>
  20. /// <returns></returns>
  21. IEnumerable<StuInfoBasicEntity> GetPageList(Pagination pagination, string queryJson);
  22. /// <summary>
  23. /// 获取StuInfoBasic表实体数据
  24. /// <param name="keyValue">主键</param>
  25. /// <summary>
  26. /// <returns></returns>
  27. StuInfoBasicEntity GetStuInfoBasicEntity(string keyValue);
  28. List<CdMajorEntity> GetMajorInfoWithGraduation();
  29. void CreateGraduateNoByMajor(string CityCode,string SchoolCode,string MajorList);
  30. StuInfoBasicEntity GetStuNoByAccount(string keyValue);
  31. List<string> GetSaveClassStudents(string account);
  32. StuInfoBasicEntity GetStuInfoBasicEntityByStuNo(string enCode);
  33. string GetPhotoByStuNo(string enCode);
  34. StuInfoBasicEntity GetStuInfoBasicEntityByStuName(string name);
  35. /// <summary>
  36. /// 获取左侧树形数据
  37. /// <summary>
  38. /// <returns></returns>
  39. List<TreeModel> GetTree();
  40. #endregion
  41. #region 提交数据
  42. /// <summary>
  43. /// 审核全部
  44. /// </summary>
  45. void CheckAll();
  46. void AllowGraduate(string stuNo,string status);
  47. void SynPhoto();
  48. /// <summary>
  49. /// 删除实体数据
  50. /// <param name="keyValue">主键</param>
  51. /// <summary>
  52. /// <returns></returns>
  53. void DeleteEntity(string keyValue);
  54. /// <summary>
  55. /// 领取毕业证
  56. /// </summary>
  57. /// <param name="keyValue"></param>
  58. void GetCard(string keyValue);
  59. void StuStore();
  60. /// <summary>
  61. /// 保存实体数据(新增、修改)
  62. /// <param name="keyValue">主键</param>
  63. /// <summary>
  64. /// <returns></returns>
  65. void SaveEntity(string keyValue, StuInfoBasicEntity entity);
  66. void UpdateAccount();
  67. #endregion
  68. void GenerateAccout();
  69. bool GetAny();
  70. IEnumerable<StuInfoBasicEntity> GetAllList();
  71. IEnumerable<StuInfoBasicEntity> GetStuInfoByClassNo(string classNo);
  72. void SyncDept();
  73. void SyncMajor();
  74. }
  75. }