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.
|
|
|
|
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
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 邮件账户配置表
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("email_user_account")]
|
|
|
|
|
[Description("邮件账户配置表")]
|
|
|
|
|
public class EmailUserAccountInfo : EmailParserSystemDbEntity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 邮箱
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string EMAIL_ACCOUNT { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 密码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PASSWORD { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 收件服务器
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string RECEIVE_SERVER { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 接收服务器类型是否IMAP 1-是 0-否
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool USE_IMAP { get; set; } = true;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 收件服务器端口
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int RECEIVE_PORT { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 收件服务器是否SSL
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool RECEIVE_SSL { get; set; } = true;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发件服务器
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SMTP_SERVER { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发件服务器端口
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int SMTP_PORT { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发件服务器是否SSL
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool SMTP_SSL { get; set; } = true;
|
|
|
|
|
}
|
|
|
|
|
}
|