using System; using System.Linq; using System.Text; using SqlSugar; namespace Tiobon.Core.Model.Models { /// /// /// [SugarTable("WeChatPushLog")] public partial class WeChatPushLog { /// /// 推送ID /// [SugarColumn(IsPrimaryKey = true,IsNullable = false)] public string id { get; set; } /// /// 来自谁 /// [SugarColumn(Length = 100, IsNullable = true)] public string PushLogFrom { get; set; } /// /// 推送IP /// [SugarColumn(Length = 50, IsNullable = true)] public string PushLogIP { get; set; } /// /// 推送客户 /// [SugarColumn(Length = 100, IsNullable = true)] public string PushLogCompanyID { get; set; } /// /// 推送用户 /// [SugarColumn(Length = 100, IsNullable = true)] public string PushLogToUserID { get; set; } /// /// 推送模板ID /// [SugarColumn(Length = 100, IsNullable = true)] public string PushLogTemplateID { get; set; } /// /// 推送内容 /// [SugarColumn(Length = 2000, IsNullable = true)] public string PushLogContent { get; set; } /// /// 推送时间 /// [SugarColumn(IsNullable = false)] public DateTime? PushLogTime { get; set; } /// /// 推送状态(Y/N) /// [SugarColumn(Length =1,IsNullable = false)] public string PushLogStatus { get; set; } /// /// 备注 /// [SugarColumn(Length = 200, IsNullable = false)] public string PushLogRemark { get; set; } /// /// 推送OpenID /// [SugarColumn(Length = 100, IsNullable = false)] public string PushLogOpenid { get; set; } /// /// 推送微信公众号 /// [SugarColumn(Length = 100, IsNullable = false)] public string PushLogPublicAccount { get; set; } /// /// 创建者id /// [SugarColumn(IsNullable = true)] public int? CreateId { get; set; } /// /// 创建人 /// [SugarColumn(IsNullable = true)] public string CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(IsNullable = true)] public DateTime? CreateTime { get; set; } /// /// 修改者id /// [SugarColumn(IsNullable = true)] public int? ModifyId { get; set; } /// /// 修改人 /// [SugarColumn(IsNullable = true)] public string ModifyBy { get; set; } /// /// 修改时间 /// [SugarColumn(IsNullable = true)] public DateTime? ModifyTime { get; set; } } }