Basf_FCL/FCL/WebApi/Controllers/DataSyncUserInfoController.cs

27 lines
671 B
C#
Raw Normal View History

2024-05-08 10:17:02 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
namespace WebApi.Controllers
{
2025-10-22 10:59:59 +08:00
/// <summary>
/// HR信息接口控制器
/// </summary>
2024-05-08 10:17:02 +08:00
public class DataSyncUserInfoController:ApiController
{
2025-10-22 10:59:59 +08:00
/// <summary>
/// 获取HR信息接口
/// </summary>
/// <returns></returns>
2024-05-08 10:17:02 +08:00
[HttpGet]
public Model.ResponeData GetHrInfoList()
{
BLL.APIService.SyncUserInfoService.GetSyncUserInfo();
var result = new Model.ResponeData();
result.message = "接口已请求";
return result;
}
}
}