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