37 lines
836 B
C#
37 lines
836 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using SqlSugar;
|
|
using LearningOfficer.OA.Core.Entities;
|
|
|
|
namespace LearningOfficer.OA.Core.Entities.OA.ClassesTemeInfo
|
|
{
|
|
/// <summary>
|
|
/// 班级工作主题的目标
|
|
///</summary>
|
|
[SugarTable("classes_theme_objectives")]
|
|
public class ClassesThemeObjectives : BaseEntity
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:工作目标
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "objectives_title" )]
|
|
public string ObjectivesTitle { get; set; } = null!;
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:主题id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "theme_id" )]
|
|
public long ThemeId { get; set; }
|
|
|
|
|
|
}
|
|
|
|
} |