52 lines
1.3 KiB
C#
52 lines
1.3 KiB
C#
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.NET.Core
|
|
{
|
|
[SugarTable("bus_studentscale_results", "学生量表结果表")]
|
|
public class BusStudentScaleResults : EntityTenant
|
|
{
|
|
/// <summary>
|
|
/// 学生Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "学生Id")]
|
|
public long SysOauthUserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 量表Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "量表Id")]
|
|
public long ScaleId { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "标题", IsNullable = true)]
|
|
public string Title { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结果类型
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "结果类型")]
|
|
public int Type { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// 测试结果
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "测试结果", IsNullable = true, Length = int.MaxValue)]
|
|
|
|
public string Result { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|