update 删除所有Xn前缀, 规范了所有分页参数和返回值
This commit is contained in:
@@ -5,7 +5,7 @@ namespace Ewide.Core.Service
|
||||
/// <summary>
|
||||
/// 角色参数
|
||||
/// </summary>
|
||||
public class RoleInput : XnInputBase
|
||||
public class RoleInput : InputBase
|
||||
{
|
||||
/// <summary>
|
||||
/// 名称
|
||||
|
||||
@@ -70,7 +70,7 @@ namespace Ewide.Core.Service
|
||||
(code, u => EF.Functions.Like(u.Code, $"%{input.Code.Trim()}%")))
|
||||
.Where(u => u.Status == (int)CommonStatus.ENABLE).OrderBy(u => u.Sort)
|
||||
.ToPageData(input);
|
||||
return XnPageResult<SysRole>.PageResult(roles);
|
||||
return PageDataResult<SysRole>.PageResult(roles);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user