Basf_EProject/EProject/WebApi/Controllers/DataSyncUserInfoController.cs

27 lines
667 B
C#
Raw Normal View History

2024-05-08 11:01:54 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
namespace WebApi.Controllers
{
2026-02-10 15:41:06 +08:00
/// <summary>
/// HR对接接口控制器
/// </summary>
2024-05-08 11:01:54 +08:00
public class DataSyncUserInfoController: ApiController
{
2026-02-10 15:41:06 +08:00
/// <summary>
/// HR对接接口
/// </summary>
/// <returns></returns>
2024-05-08 11:01:54 +08:00
[HttpGet]
public Model.ResponeData GetHrInfoList()
{
BLL.APIService.SyncUserInfoService.GetSyncUserInfo();
var result = new Model.ResponeData();
result.message = "接口已请求";
return result;
2026-02-10 15:41:06 +08:00
}
2024-05-08 11:01:54 +08:00
}
}