修改大小写问题
parent
10037b4f7a
commit
97644f5c91
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -4,5 +4,5 @@ namespace OpenAuth.App.ServiceApp.Task.Request;
|
|||
|
||||
public class PersonTaskQuery : PageReq
|
||||
{
|
||||
public string UserId { get; set; }
|
||||
public string userId { get; set; }
|
||||
}
|
||||
Loading…
Reference in New Issue