81 lines
2.0 KiB
C#
81 lines
2.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.NET.Core;
|
|
|
|
|
|
/// <summary>
|
|
/// 我的志愿表
|
|
/// </summary>
|
|
[SugarTable(null, "我的志愿表")]
|
|
[SysTable]
|
|
public class SysVolunteerTb : EntityBase
|
|
{
|
|
/// <summary>
|
|
/// 用户ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "用户Id")]
|
|
public long CId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 志愿表名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "志愿表名称", IsNullable = true)]
|
|
public string TableName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///批次名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "批次名称", IsNullable = true)]
|
|
public string BatchName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 志愿填报类型(智能填报|一键填报)
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "志愿填报类型", IsNullable = true)]
|
|
public string Type { get; set; }
|
|
|
|
/// <summary>
|
|
/// 选科科目
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "选科科目", IsNullable = true)]
|
|
public string SubjectClaim { get; set; }
|
|
|
|
/// <summary>
|
|
///填报志愿选择成绩
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "成绩")]
|
|
public float Score { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 志愿表详情
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "志愿表详情", Length = int.MaxValue)]
|
|
[MaxLength(int.MaxValue)]
|
|
public string Detail { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 所在省份code
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "所在省份code", IsNullable = true)]
|
|
public string LocationCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序
|
|
/// </summary>
|
|
public int OrderSort { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// 是否推给专家
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "是否推给专家", IsNullable = true)]
|
|
public bool IsPush { get; set; } = false;
|
|
|
|
}
|