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 System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application
|
|
|
|
|
{
|
|
|
|
|
public class QueryEmaiReceiveRecordDto : QueryPageBaseDto
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 邮件主题
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string MailSubject { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// TO 邮箱
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <example>jianghaiqing@myshipping.net</example>
|
|
|
|
|
public string MailAccount { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// FROM 邮箱
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <example></example>
|
|
|
|
|
public string Sender { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 接收时间起始
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <example></example>
|
|
|
|
|
public string RecBegin { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 接收时间结束
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <example></example>
|
|
|
|
|
public string RecEnd { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 更新日期起始
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <example></example>
|
|
|
|
|
public string UpdateBegin { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 更新日期结束
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <example></example>
|
|
|
|
|
public string UpdateEnd { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 解析器
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ParserName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 处理流程当前步骤
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string StepNote { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 状态 SUCC-成功 FAILURE-失败 EXCEPT-异常
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Status { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否已解析 1-是 0-否
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string IsParse{ get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否进入处理流程 1-是 0-否
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string IsProcess { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|