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