50 lines
1.1 KiB
C#
50 lines
1.1 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using SqlSugar;
|
||
|
||
namespace LearningOfficer.OA.Core.Entities.OA.Curriculum
|
||
{
|
||
/// <summary>
|
||
/// 批次管理-每一批次一个id(重建一次一个id)
|
||
///</summary>
|
||
[SugarTable("curriculum_batch")]
|
||
public class CurriculumBatch : BaseEntity
|
||
{
|
||
|
||
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:添加时间
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "addtime" )]
|
||
public DateTime Addtime { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:用户id
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "userid" )]
|
||
public long Userid { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:班级id
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "class_id")]
|
||
public long ClassId { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:是否删除,0正常,1删除
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "isdel")]
|
||
public int Isdel { get; set; }
|
||
}
|
||
|
||
} |