|
- using Learun.Util;
- using System.Data;
- using System.Collections.Generic;
-
- namespace Learun.Application.TwoDevelopment.EducationalAdministration
- {
- /// <summary>
- /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
- /// Copyright (c) 2013-2018 北京泉江科技有限公司
- /// 创 建:超级管理员
- /// 日 期:2019-02-21 16:53
- /// 描 述:学生学籍
- /// </summary>
- public interface StuInfoBasicIBLL
- {
- #region 获取数据
-
- /// <summary>
- /// 获取页面显示列表数据
- /// <summary>
- /// <param name="queryJson">查询参数</param>
- /// <returns></returns>
- IEnumerable<StuInfoBasicEntity> GetPageList(Pagination pagination, string queryJson);
- /// <summary>
- /// 获取StuInfoBasic表实体数据
- /// <param name="keyValue">主键</param>
- /// <summary>
- /// <returns></returns>
- StuInfoBasicEntity GetStuInfoBasicEntity(string keyValue);
- List<CdMajorEntity> GetMajorInfoWithGraduation();
- void CreateGraduateNoByMajor(string CityCode,string SchoolCode,string MajorList);
- StuInfoBasicEntity GetStuNoByAccount(string keyValue);
-
- List<string> GetSaveClassStudents(string account);
- StuInfoBasicEntity GetStuInfoBasicEntityByStuNo(string enCode);
-
- StuInfoBasicEntity GetStuInfoBasicEntityByStuName(string name);
- /// <summary>
- /// 获取左侧树形数据
- /// <summary>
- /// <returns></returns>
- List<TreeModel> GetTree();
- #endregion
-
- #region 提交数据
- /// <summary>
- /// 审核全部
- /// </summary>
- void CheckAll();
- void AllowGraduate(string stuNo,string status);
- void SynPhoto();
- /// <summary>
- /// 删除实体数据
- /// <param name="keyValue">主键</param>
- /// <summary>
- /// <returns></returns>
- void DeleteEntity(string keyValue);
- /// <summary>
- /// 领取毕业证
- /// </summary>
- /// <param name="keyValue"></param>
- void GetCard(string keyValue);
- void StuStore();
-
-
- /// <summary>
- /// 保存实体数据(新增、修改)
- /// <param name="keyValue">主键</param>
- /// <summary>
- /// <returns></returns>
- void SaveEntity(string keyValue, StuInfoBasicEntity entity);
- void UpdateAccount();
- #endregion
-
- void GenerateAccout();
- bool GetAny();
- IEnumerable<StuInfoBasicEntity> GetAllList();
- IEnumerable<StuInfoBasicEntity> GetStuInfoByClassNo(string classNo);
- }
- }
|