using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace LearningOfficer.OA.Core.Entities.OA.StudentInfo { /// /// 学生信息记录表 /// [SugarTable("student_info")] public class StudentInfo : BaseEntity { /// /// 备 注:学生id /// 默认值: /// [SugarColumn(ColumnName = "student_id" )] public long? StudentId { get; set; } /// /// 备 注:备注 /// 默认值: /// [SugarColumn(ColumnName = "remark" )] public string? Remark { get; set; } } }