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