using FreeSql.DatabaseModel;using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Threading.Tasks; using Newtonsoft.Json; using FreeSql.DataAnnotations; namespace djy.Model { [JsonObject(MemberSerialization.OptIn), Table(Name = "Mail_Retransmission", DisableSyncStructure = true)] public partial class MailRetransmission { [JsonProperty, Column(DbType = "varchar(40)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } [JsonProperty, Column(DbType = "varchar(200)")] public string CCTo { get; set; } [JsonProperty, Column(InsertValueSql = "getdate()")] public DateTime CreateTime { get; set; } [JsonProperty, Column(DbType = "varchar(200)", IsNullable = false)] public string MailAccount { get; set; } [JsonProperty] public long MailId { get; set; } [JsonProperty, Column(DbType = "varchar(500)", IsNullable = false)] public string MailPath { get; set; } [JsonProperty, Column(DbType = "varchar(40)", IsNullable = false)] public string MailRecordId { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string Operator { get; set; } [JsonProperty, Column(DbType = "varchar(40)")] public string RelativeId { get; set; } [JsonProperty, Column(DbType = "varchar(500)")] public string RetransmitSubject { get; set; } [JsonProperty, Column(DbType = "varchar(20)", IsNullable = false)] public string SendStatus { get; set; } [JsonProperty] public DateTime? SendTime { get; set; } [JsonProperty, Column(DbType = "varchar(200)", IsNullable = false)] public string SendTo { get; set; } } }