university response add property(Ownership)
parent
40b5e16f9e
commit
b9867c4fa9
|
|
@ -4005,6 +4005,11 @@
|
|||
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:New_College.Model.ViewModels.AIGOResponse.Ownership">
|
||||
<summary>
|
||||
学校归属
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:New_College.Model.ViewModels.AIGOResponse.planCount">
|
||||
<summary>
|
||||
计划数
|
||||
|
|
|
|||
|
|
@ -136,6 +136,11 @@ namespace New_College.Model.ViewModels
|
|||
/// </summary>
|
||||
public string _SYL { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 学校归属
|
||||
/// </summary>
|
||||
public string Ownership { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 计划数
|
||||
/// </summary>
|
||||
|
|
@ -240,6 +245,8 @@ namespace New_College.Model.ViewModels
|
|||
/// </summary>
|
||||
public int planCount { get; set; }
|
||||
|
||||
public string Ownership { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 学费
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -108,6 +108,7 @@ namespace New_College.Services
|
|||
UniversityName = c.UniversityName,
|
||||
UniversityCode = c.RecruitCode.ToString(),
|
||||
LowScoreRank = c.LowScoreRank,
|
||||
Ownership = c.Ownership,
|
||||
// SubjectClam = c.SelectSubject,
|
||||
Type = MajorPlanScoreTool.GetPlanScore(c.LowScore, request.Score),//冲稳保院校
|
||||
planCount = list.Where(w => w.Years == DateTime.Now.Year && w.UId == c.UId).Sum(c => c.PlanCount),
|
||||
|
|
@ -219,6 +220,7 @@ namespace New_College.Services
|
|||
MajorGroup = c.MajorGroup,
|
||||
MajorRemark = c.Remark,
|
||||
planCount = c.PlanCount,
|
||||
Ownership= c.Ownership,
|
||||
Rank = c.Rank,
|
||||
_985 = c._985,
|
||||
_211 = c._211,
|
||||
|
|
|
|||
Loading…
Reference in New Issue