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_questions", "量表试题")]
public class BusScaleQuestions: DEntitySortBase
{
[SugarColumn(ColumnDescription = "量表ID")]
public virtual long ScaleId { get; set; }
///
/// 试题内容
///
[SugarColumn(ColumnDescription = "试题内容",Length =int.MaxValue)]
public string Context { get; set; }
}
}