@ -61,7 +61,7 @@ public class Ghre_RequestController : BaseController<IGhre_RequestServices, Ghre
[HttpPost("ExportExcel/{type}")]
public async Task<ServiceResult<ExcelData>> ExportExcel([FromBody] QueryExport filter, string type)
{
return await _service.ExportGroupExcel(filter, type);
return await _service.ExportExcel(filter, type);
}
#endregion
@ -17,4 +17,5 @@ public interface IGhre_RequestServices : IBaseServices<Ghre_Request, Ghre_Reques
Task Ushio_Sync();
Task<ServiceResult<ExcelData>> ExportGroupExcel(QueryExport body, string type);
Task<ServiceResult<ExcelData>> ExportExcel(QueryExport body, string status);