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