Basf_FCL/FCL/WebApi/Controllers/SyncContractorController.cs

27 lines
689 B
C#
Raw Normal View History

2026-02-10 15:42:58 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
namespace WebApi.Controllers
{
/// <summary>
/// 获取承包商信息接口
/// </summary>
public class SyncContractorController: ApiController
{
/// <summary>
/// 获取承包商信息接口
/// </summary>
/// <returns></returns>
[HttpGet]
public Model.ResponeData GetContractorList()
{
BLL.APIService.SyncContractorService.GetSyncContractor();
var result = new Model.ResponeData();
result.message = "接口已请求";
return result;
}
}
}