52 lines
1.2 KiB
C#
52 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using SqlSugar;
|
|
|
|
namespace LearningOfficer.OA.Core.Entities.OA.StudentInfo
|
|
{
|
|
/// <summary>
|
|
/// 学生更改班级记录表
|
|
///</summary>
|
|
[SugarTable("student_change_class")]
|
|
public class StudentChangeClass : BaseEntity
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:原来班级id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "class_id" )]
|
|
public long? ClassId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:新班级id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "new_class_id" )]
|
|
public long? NewClassId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:用户id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "adduserid" )]
|
|
public long? Adduserid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:修改时间
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "change_time" )]
|
|
public DateTime? ChangeTime { get; set; }
|
|
|
|
|
|
}
|
|
|
|
} |