156 lines
3.3 KiB
C#
156 lines
3.3 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace New_College.Model.ViewModels
|
|
{
|
|
[SugarTable("T_TbSNeedDataInfo", "WMBLOG_MYSQL")]
|
|
public class TbSNeedDataInfoViewDto
|
|
{
|
|
public long ID { get; set; }
|
|
public string SubjectType { get; set; }
|
|
public string EnrollmentType { get; set; }
|
|
|
|
public string EnrollmentCode { get; set; }
|
|
|
|
public string UniversityName { get; set; }
|
|
|
|
public string MajorCode { get; set; }
|
|
|
|
public string MajorName { get; set; }
|
|
|
|
public string Nature { get; set; }
|
|
|
|
|
|
public string _23subject { get; set; }
|
|
|
|
public string _24subject { get; set; }
|
|
|
|
public string _23Count { get; set; }
|
|
|
|
public string _Score { get; set; }
|
|
|
|
public string _23Score { get; set; }
|
|
|
|
public string _23ScoreLine { get; set; }
|
|
|
|
public string _23SchoolScore { get; set; }
|
|
|
|
public string _23SchoolScoreLine { get; set; }
|
|
|
|
public string _23SchoolAvgScore { get; set; }
|
|
|
|
public string _23SchoolAvgLine { get; set; }
|
|
|
|
public string _22Count { get; set; }
|
|
|
|
public string _22Score { get; set; }
|
|
|
|
public string _22ScoreLine { get; set; }
|
|
|
|
public string _21Count { get; set; }
|
|
|
|
public string _21Score { get; set; }
|
|
|
|
public string _21ScoreLine { get; set; }
|
|
|
|
public string _20Count { get; set; }
|
|
|
|
public string _20Score { get; set; }
|
|
|
|
public string _20ScoreLine { get; set; }
|
|
|
|
public string AcademicYear { get; set; }
|
|
|
|
public string Fee { get; set; }
|
|
|
|
public string Province { get; set; }
|
|
|
|
public string City { get; set; }
|
|
|
|
public string Ownership { get; set; }
|
|
|
|
public string LnstitutionalLevel { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 本/专
|
|
/// </summary>
|
|
public string EducationCategory { get; set; }
|
|
/// <summary>
|
|
/// 院校排名
|
|
/// </summary>
|
|
public string UniversityRank { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 所在地
|
|
/// </summary>
|
|
public string Location { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
[SugarTable("T_TbSNeedDataInfo", "WMBLOG_MYSQL")]
|
|
public class TbSNeedDataInfoPerviewViewDto
|
|
{
|
|
|
|
public string UniversityName { get; set; }
|
|
|
|
public string Nature { get; set; }
|
|
|
|
public string Province { get; set; }
|
|
|
|
public string MajorName { get; set; }
|
|
public string _23subject { get; set; }
|
|
|
|
public string _23Count { get; set; }
|
|
|
|
public string _23Score { get; set; }
|
|
|
|
public string SubjectType { get; set; }
|
|
|
|
public string _23SchoolScore { get; set; }
|
|
|
|
|
|
public string _22Score { get; set; }
|
|
|
|
|
|
public string _21Score { get; set; }
|
|
|
|
public string _20Score { get; set; }
|
|
|
|
|
|
public string Ownership { get; set; }
|
|
|
|
public string LnstitutionalLevel { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 本/专
|
|
/// </summary>
|
|
public string EducationCategory { get; set; }
|
|
/// <summary>
|
|
/// 院校排名
|
|
/// </summary>
|
|
public string UniversityRank { get; set; }
|
|
|
|
/// <summary>
|
|
/// 所在地
|
|
/// </summary>
|
|
public string Location { get; set; }
|
|
|
|
}
|
|
|
|
|
|
}
|