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 { /// /// 学生选科 /// [SugarTable("bus_student_subjectdata", "学生选科")] public class BusStudentSubjectData : DEntitySortTenant { /// /// 学生ID /// [SugarColumn(ColumnDescription = "学生ID")] public long SysOauthId { get; set; } /// /// /// [SugarColumn(ColumnDescription = "选科规则")] [MaxLength(200)] public string SubjectRules { get; set; } } }