using System.ComponentModel.DataAnnotations; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using WTA.Application.Identity.Entities.SystemManagement; using WTA.Application.Identity.Entities.SystemManagement.Group; using WTA.Shared.Application; using WTA.Shared.Attributes; using WTA.Shared.Controllers; namespace WTA.Application.Identity.Controllers; [Route("api/{culture=zh}/[controller]/[action]")] public class IN_PUB_SAController : BaseController, IResourceService { private readonly GenericController _genericController; public IN_PUB_SAController(GenericController genericController) { this._genericController = genericController; } [HttpGet] public virtual IActionResult Index() { return this._genericController.Index(); } [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] public virtual IActionResult Index([FromBody] PaginationModel model) { return this._genericController.Index(model); } [HttpPost, Multiple, Order(0), HtmlClass("el-button--danger")] public virtual IActionResult Delete([FromBody] Guid[] guids) { return this._genericController.Delete(guids); } [HttpGet, AllowAnonymous, Multiple, Order(-2), HtmlClass("el-button--primary")] public virtual IActionResult Import() { return this._genericController.Import(); } [Consumes("multipart/form-data")] [HttpPost, Multiple, Order(-2), HtmlClass("el-button--primary")] public virtual IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) { return this._genericController.Import(file, partial, replace); } } [Order(1)] [INDataInputGroup] [Display(Name = "结算数据")] public class IN_PUB_SA : IResource { }