using Furion.DatabaseAccessor;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using System.ComponentModel;
namespace Myshipping.Application.Entity
{
///
/// 邮件账户配置表
///
[SugarTable("email_user_account")]
[Description("邮件账户配置表")]
public class EmailUserAccountInfo : EmailParserSystemDbEntity
{
///
/// 邮箱
///
public string EMAIL_ACCOUNT { get; set; }
///
/// 密码
///
public string PASSWORD { get; set; }
///
/// 收件服务器
///
public string RECEIVE_SERVER { get; set; }
///
/// 接收服务器类型是否IMAP 1-是 0-否
///
public bool USE_IMAP { get; set; } = true;
///
/// 收件服务器端口
///
public int RECEIVE_PORT { get; set; }
///
/// 收件服务器是否SSL
///
public bool RECEIVE_SSL { get; set; } = true;
///
/// 发件服务器
///
public string SMTP_SERVER { get; set; }
///
/// 发件服务器端口
///
public int SMTP_PORT { get; set; }
///
/// 发件服务器是否SSL
///
public bool SMTP_SSL { get; set; } = true;
}
}