using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Core { /// /// 量表描述 /// [SugarTable("bus_scale_description","量表描述")] public class BusScaleDescription : DEntitySortBase { [SugarColumn(ColumnDescription = "量表名称")] public string Title { get; set; } /// /// 使用时间 /// [SugarColumn(ColumnDescription = "使用时间")] public string UsesTime { get; set; } /// /// ScaleId /// [SugarColumn(ColumnDescription = "ScaleId")] public long ScaleId { get; set; } /// /// 介绍 /// [SugarColumn(ColumnDescription = "介绍", Length = int.MaxValue)] public string Introduce { get; set; } /// /// 应用 /// [SugarColumn(ColumnDescription = "应用", Length = int.MaxValue,IsNullable =true)] public string Application { get; set; } /// /// 须知 /// [SugarColumn(ColumnDescription = "须知", Length = int.MaxValue)] public string Notice { get; set; } } }