修改大小写问题

Insight
陈伟 2024-11-21 15:06:52 +08:00
parent 10037b4f7a
commit 97644f5c91
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ public class PersonTaskApp : SqlSugarBaseApp<InsTask, SugarDbContext>
}
List<string> userIds;
if (string.IsNullOrEmpty(req.UserId))
if (string.IsNullOrEmpty(req.userId))
{
userIds = await Repository.ChangeRepository<SugarRepositiry<SysGroup>>()
.AsQueryable().InnerJoin<SysGroupuser>((a, b) => a.Id == b.GroupId)

View File

@ -4,5 +4,5 @@ namespace OpenAuth.App.ServiceApp.Task.Request;
public class PersonTaskQuery : PageReq
{
public string UserId { get; set; }
public string userId { get; set; }
}