48 lines
1.0 KiB
C#
48 lines
1.0 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.Models
|
|
{
|
|
/// <summary>
|
|
/// 概率历史
|
|
/// </summary>
|
|
public class U_ProbabilityHistory : EntityModel
|
|
{
|
|
/// <summary>
|
|
///用户Id
|
|
/// </summary>
|
|
public int CustomerId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 院校Id
|
|
/// </summary>
|
|
public int UniversityId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 概率
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int Probability { get; set; }
|
|
|
|
/// <summary>
|
|
/// 预估分数
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public float EstimateScore { get; set; }
|
|
|
|
/// <summary>
|
|
/// 区域Id
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int AreaId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 年份
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int Year { get; set; }
|
|
}
|
|
}
|