获取员工绩效列表
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
using DOAN.Admin.WebApi.Filters;
|
||||
using DOAN.Model.MES.Group.Dto;
|
||||
using DOAN.Service.MES.Group.IService;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
namespace DOAN.Admin.WebApi.Controllers.MES.Group
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 员工绩效
|
||||
/// </summary>
|
||||
[Verify]
|
||||
[Route("mes/deviceManagement/DeviceAccount")]
|
||||
public class AchievementController : BaseController
|
||||
{
|
||||
private readonly IAchievementService _achievementService;
|
||||
public AchievementController(IAchievementService achievementService)
|
||||
{
|
||||
_achievementService = achievementService;
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 获取y工绩效列表
|
||||
/// </summary>
|
||||
/// <param name="parm"></param>
|
||||
/// <returns></returns>
|
||||
[HttpPost("get_staff_achievement_list")]
|
||||
public IActionResult GetstaffAchievementList([FromBody]AchievementQueryDto parm)
|
||||
{
|
||||
var response = _achievementService.GetstaffAchievementList(parm);
|
||||
return SUCCESS(response);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user