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