33 lines
750 B
C#
33 lines
750 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.Models
|
|
{
|
|
/// <summary>
|
|
/// 测评分类表
|
|
/// </summary>
|
|
public class Test_CategoryInfo : RootEntity
|
|
{
|
|
/// <summary>
|
|
/// 分类名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 解释
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "nvarchar", IsNullable = true, Length = 1000)]
|
|
public string Desc { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 解释详情
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "nvarchar", IsNullable = true, Length = 1000)]
|
|
public string Detail { get; set; }
|
|
}
|
|
|
|
}
|