update 将所有page接口更改为post请求
This commit is contained in:
@@ -59,8 +59,8 @@ namespace Ewide.Core.Service
|
||||
/// </summary>
|
||||
/// <param name="input"></param>
|
||||
/// <returns></returns>
|
||||
[HttpGet("/sysRole/page")]
|
||||
public async Task<dynamic> QueryRolePageList([FromQuery] RoleInput input)
|
||||
[HttpPost("/sysRole/page")]
|
||||
public async Task<dynamic> QueryRolePageList([FromBody] RoleInput input)
|
||||
{
|
||||
var name = !string.IsNullOrEmpty(input.Name?.Trim());
|
||||
var code = !string.IsNullOrEmpty(input.Code?.Trim());
|
||||
|
||||
Reference in New Issue
Block a user