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

46 lines
1.1 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_WECHAT_USER")]
public class MessageWechatUserEntity : CLDEntityBase
{
/// <summary>
/// 公众号id.
/// </summary>
[SugarColumn(ColumnName = "F_GZHID")]
public string? GzhId { get; set; }
/// <summary>
/// 用户id.
/// </summary>
[SugarColumn(ColumnName = "F_USERID")]
public string? UserId { get; set; }
/// <summary>
/// 公众号用户id.
/// </summary>
[SugarColumn(ColumnName = "F_OPENID")]
public string? OpenId { get; set; }
/// <summary>
/// 是否关注.
/// </summary>
[SugarColumn(ColumnName = "F_CLOSEMARK")]
public int? CloseMark { get; set; }
// modified by PhilPan 基类包含此属性
///// <summary>
///// 租户id.
///// </summary>
//[SugarColumn(ColumnName = "F_TENANTID")]
//public string? TenantId { get; set; }
}