Skip to content

Commit cb2016c

Browse files
committed
fix: format the code. anjoy8#232
1 parent 7c43929 commit cb2016c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Blog.Core.Api/Blog.Core.Model.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Blog.Core.Api/Controllers/UserController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public async Task<MessageModel<PageModel<SysUserInfo>>> Get(int page = 1, string
6666
int intPageSize = 50;
6767

6868

69-
var data = await _sysUserInfoServices.QueryPage(a => a.IsDeleted != true && a.Status >= 0 && ((a.LoginName != null && a.LoginName.Contains(key)) || (a.RealName != null && a.RealName.Contains(key))), page, intPageSize, " uID desc ");
69+
var data = await _sysUserInfoServices.QueryPage(a => a.IsDeleted != true && a.Status >= 0 && ((a.LoginName != null && a.LoginName.Contains(key)) || (a.RealName != null && a.RealName.Contains(key))), page, intPageSize, " Id desc ");
7070

7171

7272
#region MyRegion

Blog.Core.Model/Models/RootTkey/sysUserInfoRoot.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace Blog.Core.Model
1010
public class SysUserInfoRoot<Tkey> where Tkey : IEquatable<Tkey>
1111
{
1212
/// <summary>
13-
/// uID
13+
/// Id
1414
/// 泛型主键Tkey
1515
/// </summary>
1616
[SugarColumn(IsNullable = false, IsPrimaryKey = true)]

0 commit comments

Comments
 (0)