using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.Repository.Domain { /// /// 推送平台 /// [SugarTable("lasa_platform")] public class LasaPlatform { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true)] public string Id { get; set; } /// /// 平台名称 /// public string PlatformName { get; set; } /// /// Url /// public string Url { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 消息推送路由 /// public string RoutingKey { get; set; } /// /// 交换机 /// public string Exchange { get; set; } /// /// 是否删除 /// public bool IsDelete { get; set; } /// /// topic /// public string Topic { get; set; } } }