using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Core { /// /// 家庭关联学生表 /// [SugarTable("bus_framilymap_students", "家庭关联学生表")] public class BusFramilyMapStudents : DEntitySortTenant { /// /// /// [SugarColumn(ColumnDescription = "家庭Id")] public long FramilyId { get; set; } /// /// 生涯系统学生Id(远端) /// [SugarColumn(ColumnDescription = "学生Id")] public Guid StudentId { get; set; } /// /// 学生学号 /// [SugarColumn(ColumnDescription = "学生学号",IsNullable =true)] public string BarCode { get; set; } /// /// 学生姓名 /// [SugarColumn(ColumnDescription = "学生姓名", IsNullable = true)] public string StudentName { get; set; } /// /// /// [SugarColumn(ColumnDescription = "学校名称", IsNullable = true)] public string SchoolName { get; set; } /// /// 学生年级 /// [SugarColumn(ColumnDescription = "学生年级", IsNullable = true)] public string GradeName { get; set; } /// /// 学生班级 /// [SugarColumn(ColumnDescription = "学生班级", IsNullable = true)] public string ClassName { get; set; } /// /// 性别 /// [SugarColumn(ColumnDescription = "性别", IsNullable = true)] public string Gender { get; set; } /// /// 是否为默认 /// [SugarColumn(ColumnDescription = "是否为默认", IsNullable = true)] public bool IsDefault { get; set; } } }