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.
69 lines
1.6 KiB
C#
69 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 邮件账户配置台账查询请求
|
|
/// </summary>
|
|
public class QueryEmailUserAccountDto : QueryPageBaseDto
|
|
{
|
|
/// <summary>
|
|
/// 邮箱账户
|
|
/// </summary>
|
|
public string EmailAccount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否IMAP 1-是 0-否
|
|
/// </summary>
|
|
public string IsIMAP { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建日期起始
|
|
/// </summary>
|
|
/// <example></example>
|
|
public string CreateBegin { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建日期结束
|
|
/// </summary>
|
|
/// <example></example>
|
|
public string CreateEnd { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新日期起始
|
|
/// </summary>
|
|
/// <example></example>
|
|
public string UpdateBegin { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新日期结束
|
|
/// </summary>
|
|
/// <example></example>
|
|
public string UpdateEnd { get; set; }
|
|
|
|
/// <summary>
|
|
/// 收件服务器
|
|
/// </summary>
|
|
public string ReceiveServer { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发件服务器
|
|
/// </summary>
|
|
public string SmtpServer { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
public string CreateUser { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新人
|
|
/// </summary>
|
|
public string UpdateUser { get; set; }
|
|
}
|
|
}
|