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