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