25 lines
691 B
C#
25 lines
691 B
C#
|
|
using SqlSugar;
|
|||
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace YBDevice.Entity
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 科普资讯appid
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarTable("YB_nSecInfoAppId", TableDescription = "科普资讯appid", IsDisabledUpdateAll = false, IsDisabledDelete = true)]
|
|||
|
|
public class YB_nSecInfoAppId
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 资讯ID
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(ColumnDescription = "资讯ID")]
|
|||
|
|
public Guid InfoId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 小程序appid
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(ColumnDescription = "小程序appid", IsNullable = true, ColumnDataType = "varchar(50)")]
|
|||
|
|
public string AppId { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|