25 lines
657 B
C#
25 lines
657 B
C#
using SqlSugar;
|
|
using System;
|
|
|
|
namespace YBDevice.Entity
|
|
{
|
|
/// <summary>
|
|
/// 科普资讯内容
|
|
/// </summary>
|
|
[SugarTable("YB_nSecInfoContent", TableDescription = "科普资讯内容", IsDisabledUpdateAll = false, IsDisabledDelete = true)]
|
|
public class YB_nSecInfoContent
|
|
{
|
|
/// <summary>
|
|
/// 资讯ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "资讯ID")]
|
|
public Guid InfoId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 内容
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "内容", ColumnDataType = "text")]
|
|
public string Content { get; set; }
|
|
}
|
|
}
|