using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.Message.Entitys.Entity; /// /// 消息连接 /// 版 本:V3.2 /// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com) /// 日 期:2021-06-01. /// [SugarTable("BASE_MESSAGE_SHORT_LINK")] public class MessageShortLinkEntity : CLDEntityBase { /// /// 短链接. /// [SugarColumn(ColumnName = "F_SHORTLINK")] public string? ShortLink { get; set; } /// /// PC端链接. /// [SugarColumn(ColumnName = "F_REALPCLINK")] public string? RealPcLink { get; set; } /// /// App端链接. /// [SugarColumn(ColumnName = "F_REALAPPLINK")] public string? RealAppLink { get; set; } /// /// 内容. /// [SugarColumn(ColumnName = "F_BODYTEXT")] public string? BodyText { get; set; } /// /// 是否点击后失效. /// [SugarColumn(ColumnName = "F_ISUSED")] public int? IsUsed { get; set; } /// /// 点击次数. /// [SugarColumn(ColumnName = "F_CLICKNUM")] public int? ClickNum { get; set; } /// /// 失效次数. /// [SugarColumn(ColumnName = "F_UNABLENUM")] public int? UnableNum { get; set; } /// /// 失效时间. /// [SugarColumn(ColumnName = "F_UNABLETIME")] public DateTime? UnableTime { get; set; } /// /// 用户id. /// [SugarColumn(ColumnName = "F_USERID")] public string? UserId { get; set; } /// /// 租户id. /// [SugarColumn(ColumnName = "F_TENANTID")] public string? TenantId { get; set; } }