39 lines
932 B
C#
39 lines
932 B
C#
using LearningOfficer.OA.Common.Enums;
|
|
using Masuit.Tools.Systems;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.ToolKit
|
|
{
|
|
/// <summary>
|
|
/// 工具包学期视图数据传输对象
|
|
/// </summary>
|
|
public class ToolKitSemesterViewDto
|
|
{
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 备 注:工具包Id
|
|
/// 默认值:
|
|
///</summary>
|
|
public long ToolKitId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备 注:年级阶段
|
|
/// 默认值:
|
|
///</summary>
|
|
public SolutionSemesterEnum SolutionSemesterEnum { get; set; }
|
|
|
|
public string SolutionSemesterName
|
|
{
|
|
get
|
|
{
|
|
return SolutionSemesterEnum.GetEnumDescription().Description;
|
|
}
|
|
}
|
|
}
|
|
}
|