31 lines
778 B
C#
31 lines
778 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using LearningOfficer.OA.Common.Enums;
|
|
using SqlSugar;
|
|
|
|
namespace LearningOfficer.OA.Core.Entities.OA.Solution
|
|
{
|
|
/// <summary>
|
|
/// 工具包学期阶段表
|
|
///</summary>
|
|
[SugarTable("tool_kit_semester")]
|
|
public class ToolKitSemester : BaseEntity
|
|
{
|
|
|
|
/// <summary>
|
|
/// 备 注:工具包Id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "tool_kit_id")]
|
|
public long ToolKitId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备 注:工具包Id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "solution_semester_enum")]
|
|
public SolutionSemesterEnum SolutionSemesterEnum { get; set; }
|
|
}
|
|
|
|
} |