initProject
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.Http;
|
||||
|
||||
namespace WebApi.Controllers
|
||||
{
|
||||
public class DataSyncUserInfoController: ApiController
|
||||
{
|
||||
[HttpGet]
|
||||
public Model.ResponeData GetHrInfoList()
|
||||
{
|
||||
BLL.APIService.SyncUserInfoService.GetSyncUserInfo();
|
||||
var result = new Model.ResponeData();
|
||||
result.message = "接口已请求";
|
||||
return result;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user