|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- using Learun.Util;
- using System.Data;
- using System.Collections.Generic;
- using Learun.Application.TwoDevelopment.LogisticsManagement;
-
- namespace Learun.Application.TwoDevelopment.EducationalAdministration
- {
- /// <summary>
- /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
- /// Copyright (c) 2013-2018 北京泉江科技有限公司
- /// 创 建:超级管理员
- /// 日 期:2019-07-17 11:20
- /// 描 述:新生录取管理
- /// </summary>
- public interface StuEnrollIBLL
- {
- #region 获取数据
-
- /// <summary>
- /// 获取页面显示列表数据
- /// <summary>
- /// <param name="queryJson">查询参数</param>
- /// <returns></returns>
- IEnumerable<StuEnrollEntity> GetPageList(Pagination pagination, string queryJson);
- IEnumerable<StuEnrollEntity> AllStudent();
- IEnumerable<Acc_DormitoryBuildEntity> GetDormitorys(Pagination pagination, string queryJson);
-
- IEnumerable<StuEnrollEntity> GetReportPageList(Pagination pagination, string queryJson);
- /// <summary>
- /// 获取StuEnroll表实体数据
- /// <param name="keyValue">主键</param>
- /// <summary>
- /// <returns></returns>
- StuEnrollEntity GetStuEnrollEntity(string keyValue);
- #endregion
-
- #region 提交数据
-
- /// <summary>
- /// 删除实体数据
- /// <param name="keyValue">主键</param>
- /// <summary>
- /// <returns></returns>
- void DeleteEntity(string keyValue);
- /// <summary>
- /// 保存实体数据(新增、修改)
- /// <param name="keyValue">主键</param>
- /// <summary>
- /// <returns></returns>
- void SaveEntity(string keyValue, StuEnrollEntity entity);
- void EditEnrollType(string stuIds, string enrollType);
- void AllocationClass(string classNo, string dataJson);
- void NewAllocationDormitory(string classNo, string dataJson);
- void AllocationDormiotry(string dormitoryNo, string stuId, string dormitoryName);
- #endregion
-
- (bool, string) Report(string stuId, bool status);
- (bool, string) Sign(string stuId, bool status);
- void SyncDept();
- void SyncMajor();
- (bool, string) Stay(string stuId, bool status, bool payAfter);
- void AllStay();
- (bool, string) Help(string stuId, bool status, bool payAfter);
- void AllHelp();
- (bool, string) Military(string stuId, bool status, bool payAfter);
- void AllMilitary();
-
- void AllReport();
- void AllPhoto();
- void AllGetCloth();
- void AllGetSize();
- void AllGetArticle();
-
- (bool, string) IsPay(string stuId, bool status);
- object GetPaymentInfo();
- object GetStuDefaultInfo(string StuId);
- (bool, string) IsPhoto(string stuId, bool status, string fileGuid);
- (bool, string) GetCloth(string stuId, bool status);
- (bool, string) GetClothSize(string stuId, bool status);
- (bool, string) GetArticles(string stuId, bool status);
- object GetStuInfo(string stuId);
- object GetCheckInStatistics(string DeptNo, string MajorNo, string ClassNo);
- object GetHelpStatistics(string DeptNo, string MajorNo, string ClassNo);
- object GetMilitaryStatistics(string DeptNo, string MajorNo, string ClassNo);
- void GetMoney();
- void RelationPhoto();
- void Synchronization();
-
- List<string> GetStuIdCards();
- List<TreeModel> GetTree();
- List<TreeModel> GetBedTree(string classNo, string gender);
-
-
- }
- }
|