获取员工绩效列表

This commit is contained in:
qianhao.xu
2025-02-18 20:20:31 +08:00
parent ae4920531c
commit 54ee03de40
5 changed files with 249 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using DOAN.Model.MES.Group.Dto;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Service.MES.Group.IService
{
public interface IAchievementService
{
List<AchievementDto> GetstaffAchievementList(AchievementQueryDto parm);
}
}