36 lines
831 B
C#
36 lines
831 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.ToolKit
|
|
{
|
|
public class SolutionGradeViewDto
|
|
{
|
|
/// <summary>
|
|
/// 备 注:年级名称
|
|
/// 默认值:
|
|
///</summary>
|
|
public string GradeName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备 注:年级名称后缀
|
|
/// 默认值:
|
|
///</summary>
|
|
public string GradeNameSuffix { get; set; }
|
|
|
|
/// <summary>
|
|
/// 年级显示名称,格式为“年级名称+年级名称后缀”
|
|
/// </summary>
|
|
public string GradeDisplayName
|
|
{
|
|
get
|
|
{
|
|
return $@"{GradeName}{GradeNameSuffix}";
|
|
}
|
|
}
|
|
}
|
|
}
|