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.
60 lines
1.5 KiB
C#
60 lines
1.5 KiB
C#
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_Send", DisableSyncStructure = true)]
|
|
public partial class MailSend {
|
|
|
|
[JsonProperty, Column(StringLength = 128, IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(1000)")]
|
|
public string AttachFiles { get; set; }
|
|
|
|
[JsonProperty, Column(StringLength = -2)]
|
|
public string Body { get; set; }
|
|
|
|
[JsonProperty, Column(StringLength = -2)]
|
|
public string CCTo { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
[JsonProperty, Column(StringLength = -2)]
|
|
public string RelativeId { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(64)")]
|
|
public string Sender { get; set; }
|
|
|
|
[JsonProperty, Column(StringLength = 40)]
|
|
public string SendStatus { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? SendTime { get; set; }
|
|
|
|
[JsonProperty, Column(StringLength = -2)]
|
|
public string SendTo { get; set; }
|
|
|
|
[JsonProperty, Column(StringLength = 50)]
|
|
public string ShowName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string SmtpConfig { get; set; }
|
|
|
|
[JsonProperty, Column(StringLength = -2)]
|
|
public string Title { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int TryCount { get; set; }
|
|
|
|
}
|
|
|
|
}
|