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.
|
- using Nancy;
- using Learun.Util;
- using System.Collections.Generic;
- using Learun.Application.TwoDevelopment.EducationalAdministration;
- using Learun.Application.TwoDevelopment.PersonnelManagement;
-
- namespace Learun.Application.WebApi
- {
- /// <summary>
- /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
- /// Copyright (c) 2013-2018 北京泉江科技有限公司
- /// 创 建:超级管理员
- /// 日 期:2019-06-17 16:28
- /// 描 述:日志发送
- /// </summary>
- public class SalarySheetApi : BaseApi
- {
- private SalarySheetIBLL salarySheetIBLL = new SalarySheetBLL();
-
- /// <summary>
- /// 注册接口
- /// <summary>
- public SalarySheetApi()
- : base("/Learun/EducationalAdministration/SalarySheet")
- {
- Get["/list"] = GetList;
- }
- #region 获取数据
-
- /// <summary>
- /// 获取页面显示列表数据
- /// <summary>
- /// <param name="_"></param>
- /// <returns></returns>
- public Response GetList(dynamic _)
- {
- string queryJson = this.GetReqData();
- var data = salarySheetIBLL.GetList();
- return Success(data);
- }
- #endregion
-
- }
- }
|