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 { /// /// 学生Id /// [SugarColumn(ColumnDescription = "学生Id")] public long SysOauthUserId { get; set; } /// /// 量表Id /// [SugarColumn(ColumnDescription = "量表Id")] public long ScaleId { get; set; } /// /// /// [SugarColumn(ColumnDescription = "标题", IsNullable = true)] public string Title { get; set; } /// /// 结果类型 /// [SugarColumn(ColumnDescription = "结果类型")] public int Type { get; set; } = 0; /// /// 测试结果 /// [SugarColumn(ColumnDescription = "测试结果", IsNullable = true, Length = int.MaxValue)] public string Result { get; set; } } }