49 lines
1.1 KiB
C#
49 lines
1.1 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.Models
|
|
{
|
|
/// <summary>
|
|
/// 志愿Table
|
|
/// </summary>
|
|
public class U_VolunteerTable : DEntityTenant
|
|
{
|
|
/// <summary>
|
|
/// 用户ID
|
|
/// </summary>
|
|
public int CustomerId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 志愿表名称
|
|
/// </summary>
|
|
public string VolunteerTableName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///批次名称
|
|
/// </summary>
|
|
public string BatchName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 志愿填报类型(智能填报|一键填报)
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string Type { get; set; }
|
|
|
|
/// <summary>
|
|
/// 选科科目
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string SubjectClaim { get; set; }
|
|
|
|
/// <summary>
|
|
///填报志愿选择成绩
|
|
/// </summary>
|
|
public float Score { get; set; }
|
|
|
|
|
|
}
|
|
}
|