| 12345678910111213141516171819202122 |
- using System.Common;
- using System;
- using System.Model;
- using System.Threading.Tasks;
- using System.Collections.Generic;
- namespace System.IRepositories
- {
- public interface ISysUser_GradeRepository : IRepository<T_SysUser_Grade>
- {
- /// <summary>
- /// 获取某月员工绩效 总数
- /// </summary>
- /// <param name="id">某员工</param>
- /// <param name="dtStart">时间所在月</param>
- /// <param name="type">0团队 1部门</param>
- /// <returns></returns>
- Task<List<decimal>> GetALLNumber(int id, DateTime dtStart,int type);
- }
- }
|