This commit is contained in:
2026-02-10 15:41:06 +08:00
parent 51d772994f
commit 31be7ae4b8
183 changed files with 29172 additions and 9245 deletions
@@ -6,8 +6,15 @@ using System.Web.Http;
namespace WebApi.Controllers
{
/// <summary>
/// HR对接接口控制器
/// </summary>
public class DataSyncUserInfoController: ApiController
{
/// <summary>
/// HR对接接口
/// </summary>
/// <returns></returns>
[HttpGet]
public Model.ResponeData GetHrInfoList()
{
@@ -15,6 +22,6 @@ namespace WebApi.Controllers
var result = new Model.ResponeData();
result.message = "接口已请求";
return result;
}
}
}
}
@@ -8,8 +8,16 @@ using Model;
namespace WebApi.Controllers
{
/// <summary>
/// eproject接口
/// </summary>
public class EprojectController: ApiController
{
/// <summary>
/// 获取token
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
[HttpPost]
public Model.ResponeData GetLogin([FromBody] LoginInput input)
{
@@ -6,8 +6,15 @@ using System.Web.Mvc;
namespace WebApi.Controllers
{
/// <summary>
///
/// </summary>
public class HomeController : Controller
{
/// <summary>
///
/// </summary>
/// <returns></returns>
public ActionResult Index()
{
ViewBag.Title = "Home Page";