足力健后端,使用.netcore版本,合并1个项目使用

ISysUser_GradeRepository.cs 607B

12345678910111213141516171819202122
  1. using System.Common;
  2. using System;
  3. using System.Model;
  4. using System.Threading.Tasks;
  5. using System.Collections.Generic;
  6. namespace System.IRepositories
  7. {
  8. public interface ISysUser_GradeRepository : IRepository<T_SysUser_Grade>
  9. {
  10. /// <summary>
  11. /// 获取某月员工绩效 总数
  12. /// </summary>
  13. /// <param name="id">某员工</param>
  14. /// <param name="dtStart">时间所在月</param>
  15. /// <param name="type">0团队 1部门</param>
  16. /// <returns></returns>
  17. Task<List<decimal>> GetALLNumber(int id, DateTime dtStart,int type);
  18. }
  19. }