增加参数

develop
old易 2024-12-13 10:41:44 +08:00
parent 146a14d04b
commit 7c337f2073
2 changed files with 2 additions and 1 deletions

View File

@ -358,7 +358,7 @@ namespace New_College.Model.ViewModels
/// </summary>
public string Logo { get; set; }
public string Score { get; set; }
/// <summary>
/// 省市区名称
/// </summary>

View File

@ -39,6 +39,7 @@ namespace New_College.Repository
Sff = u.Sff == 1 ? true : false,
Sort = rank.Rank,
SubjectLevel = u.Subject_Level,
Score = string.IsNullOrWhiteSpace(rank.Score) || rank.Score == "0" ? "--" : rank.Score,
Uid = u.Id
}).ToListAsync();
return response;