2025-12-29 11:31:11 +08:00
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace OpenAuth.Repository.Domain
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 推送平台
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarTable("lasa_platform")]
|
|
|
|
|
|
public class LasaPlatform
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 主键
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 平台名称
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string PlatformName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Url
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Url { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 创建时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 消息推送路由
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string RoutingKey { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 交换机
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Exchange { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 是否删除
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public bool IsDelete { get; set; }
|
2026-01-07 09:25:06 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// topic
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Topic { get; set; }
|
2025-12-29 11:31:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|