1
This commit is contained in:
@@ -0,0 +1,65 @@
|
||||
/*
|
||||
*接口编写处...
|
||||
*如果接口需要做Action的权限验证,请在Action上使用属性
|
||||
*如: [ApiActionPermission("Equip_SpotMaintPlan",Enums.ActionPermissionOptions.Search)]
|
||||
*/
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using iMES.Entity.DomainModels;
|
||||
using iMES.Equip.IServices;
|
||||
using iMES.Core.Filters;
|
||||
using iMES.Core.Enums;
|
||||
using iMES.Equip.Services;
|
||||
|
||||
namespace iMES.Equip.Controllers
|
||||
{
|
||||
public partial class Equip_SpotMaintPlanController
|
||||
{
|
||||
private readonly IEquip_SpotMaintPlanService _service;//访问业务代码
|
||||
private readonly IHttpContextAccessor _httpContextAccessor;
|
||||
|
||||
[ActivatorUtilitiesConstructor]
|
||||
public Equip_SpotMaintPlanController(
|
||||
IEquip_SpotMaintPlanService service,
|
||||
IHttpContextAccessor httpContextAccessor
|
||||
)
|
||||
: base(service)
|
||||
{
|
||||
_service = service;
|
||||
_httpContextAccessor = httpContextAccessor;
|
||||
}
|
||||
//ApiActionPermission("Equip_SpotMaintPlan", ActionPermissionOptions.Search)设置查询表的权限,如果不填写只要登陆了都可以查询
|
||||
/// <summary>
|
||||
/// 获取table1的数据
|
||||
/// </summary>
|
||||
/// <param name="loadData"></param>
|
||||
/// <returns></returns>
|
||||
[Route("getTable1Data"), HttpPost, ApiActionPermission("Equip_SpotMaintPlan", ActionPermissionOptions.Search)]
|
||||
public async Task<IActionResult> GetTable1Data([FromBody] PageDataOptions loadData)
|
||||
{
|
||||
return JsonNormal(await Service.GetTable1Data(loadData));
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取table1的数据
|
||||
/// </summary>
|
||||
/// <param name="loadData"></param>
|
||||
/// <returns></returns>
|
||||
[Route("getTable2Data"), HttpPost, ApiActionPermission("Equip_SpotMaintPlan", ActionPermissionOptions.Search)]
|
||||
public async Task<IActionResult> GetTable2Data([FromBody] PageDataOptions loadData)
|
||||
{
|
||||
return JsonNormal(await Service.GetTable2Data(loadData));
|
||||
}
|
||||
[HttpPost, Route("getSelectorPlan")]
|
||||
public IActionResult getSelectorPlan([FromBody] PageDataOptions options)
|
||||
{
|
||||
//1.可以直接调用框架的GetPageData查询
|
||||
PageGridData<Equip_SpotMaintPlan> data = Equip_SpotMaintPlanService.Instance.GetPageData(options);
|
||||
return JsonNormal(data);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user