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