54 lines
1.4 KiB
C#
54 lines
1.4 KiB
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_description","量表描述")]
|
|
public class BusScaleDescription : DEntitySortBase
|
|
{
|
|
|
|
[SugarColumn(ColumnDescription = "量表名称")]
|
|
public string Title { get; set; }
|
|
|
|
/// <summary>
|
|
/// 使用时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "使用时间")]
|
|
public string UsesTime { get; set; }
|
|
/// <summary>
|
|
/// ScaleId
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "ScaleId")]
|
|
public long ScaleId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 介绍
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "介绍", Length = int.MaxValue)]
|
|
public string Introduce { get; set; }
|
|
|
|
/// <summary>
|
|
/// 应用
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "应用", Length = int.MaxValue,IsNullable =true)]
|
|
public string Application { get; set; }
|
|
|
|
/// <summary>
|
|
/// 须知
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "须知", Length = int.MaxValue)]
|
|
public string Notice { get; set; }
|
|
|
|
}
|
|
}
|