feat:bug fixd vip绑定查询次数未改变问题
parent
568ff5ab11
commit
dd7f2612ad
|
|
@ -172,9 +172,9 @@ namespace New_College.Api.Controllers.Back
|
|||
}).FirstOrDefault();
|
||||
response.minProRole = list.Where(e => e.PType == 1).Select(c => new MinProRole()
|
||||
{
|
||||
ScoreCount = c.ScoreCount,
|
||||
SearchCount = c.SearchCount,
|
||||
ShowCount = c.ShowCount
|
||||
ScoreCount = response.IsVip ? 999 : c.ScoreCount,
|
||||
SearchCount = response.IsVip ? 999 : c.SearchCount,
|
||||
ShowCount = response.IsVip ? 999 : c.ShowCount
|
||||
}).FirstOrDefault();
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Reference in New Issue