35 lines
792 B
C#
35 lines
792 B
C#
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.NET.Core
|
|
{
|
|
|
|
/// <summary>
|
|
/// 学生选科
|
|
/// </summary>
|
|
[SugarTable("bus_student_subjectdata", "学生选科")]
|
|
public class BusStudentSubjectData : DEntitySortTenant
|
|
{
|
|
|
|
/// <summary>
|
|
/// 学生ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "学生ID")]
|
|
public long SysOauthId { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "选科规则")]
|
|
[MaxLength(200)]
|
|
public string SubjectRules { get; set; }
|
|
|
|
}
|
|
}
|