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.

57 lines
1.4 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_Receive_Record", DisableSyncStructure = true)]
public partial class MailReceiveRecord {
[JsonProperty, Column(StringLength = 128, IsPrimary = true, IsNullable = false)]
public string GID { get; set; }
[JsonProperty, Column(DbType = "varchar(500)")]
public string Attachments { get; set; }
[JsonProperty, Column(StringLength = -2)]
public string Body { get; set; }
[JsonProperty, Column(DbType = "varchar(500)")]
public string FilePath { get; set; }
[JsonProperty]
public bool IsCheck { get; set; } = false;
[JsonProperty]
public bool IsParse { get; set; } = false;
[JsonProperty]
public bool IsProcess { get; set; } = false;
[JsonProperty, Column(DbType = "varchar(200)", IsNullable = false)]
public string MailAccount { get; set; }
[JsonProperty]
public DateTime MailDate { get; set; }
[JsonProperty]
public long MailId { get; set; }
[JsonProperty]
public DateTime RecTime { get; set; }
[JsonProperty, Column(DbType = "varchar(200)")]
public string Sender { get; set; }
[JsonProperty, Column(DbType = "varchar(500)")]
public string Subject { get; set; }
}
}