You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.0 KiB
C#

using System;
using SqlSugar;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Admin.Core.Model
{
///<summary>
///实体类
///</summary>
[Table("WeChatFansLogs")]
[SugarTable( "WeChatFansLogs", "admin_sqlite")]
public class WeChatFansLogs
{
/// <summary>
/// Id
/// </summary>
[Key]
[SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
[Required]
public string Id { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? CreateDate { get; set; }
/// <summary>
/// Openid
/// </summary>
public string Openid { get; set; }
/// <summary>
/// 关注时间
/// </summary>
public DateTime? SubDate { get; set; }
/// <summary>
/// 取消关注时间
/// </summary>
public DateTime? UnsubDate { get; set; }
/// <summary>
/// 操作状态
/// </summary>
public bool? Status { get; set; }
}
}