Files
tnb.server/message/Tnb.Message.Entitys/Entity/MessageShortLinkEntity.cs
2023-06-01 10:36:47 +08:00

76 lines
1.8 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.Common.Contracts;
using SqlSugar;
namespace JNPF.Message.Entitys.Entity;
/// <summary>
/// 消息连接
/// 版 本V3.2
/// 版 权拓通智联科技有限公司http://www.tuotong-tech.com
/// 日 期2021-06-01.
/// </summary>
[SugarTable("BASE_MESSAGE_SHORT_LINK")]
public class MessageShortLinkEntity : CLDEntityBase
{
/// <summary>
/// 短链接.
/// </summary>
[SugarColumn(ColumnName = "F_SHORTLINK")]
public string? ShortLink { get; set; }
/// <summary>
/// PC端链接.
/// </summary>
[SugarColumn(ColumnName = "F_REALPCLINK")]
public string? RealPcLink { get; set; }
/// <summary>
/// App端链接.
/// </summary>
[SugarColumn(ColumnName = "F_REALAPPLINK")]
public string? RealAppLink { get; set; }
/// <summary>
/// 内容.
/// </summary>
[SugarColumn(ColumnName = "F_BODYTEXT")]
public string? BodyText { get; set; }
/// <summary>
/// 是否点击后失效.
/// </summary>
[SugarColumn(ColumnName = "F_ISUSED")]
public int? IsUsed { get; set; }
/// <summary>
/// 点击次数.
/// </summary>
[SugarColumn(ColumnName = "F_CLICKNUM")]
public int? ClickNum { get; set; }
/// <summary>
/// 失效次数.
/// </summary>
[SugarColumn(ColumnName = "F_UNABLENUM")]
public int? UnableNum { get; set; }
/// <summary>
/// 失效时间.
/// </summary>
[SugarColumn(ColumnName = "F_UNABLETIME")]
public DateTime? UnableTime { get; set; }
/// <summary>
/// 用户id.
/// </summary>
[SugarColumn(ColumnName = "F_USERID")]
public string? UserId { get; set; }
// modified by PhilPan 基类包含此属性
///// <summary>
///// 租户id.
///// </summary>
//[SugarColumn(ColumnName = "F_TENANTID")]
//public string? TenantId { get; set; }
}