using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 邮件解析配置含代码注入配置 /// public class EmailParserConfigWithInjectDto { /// /// 邮件解析配置主键 /// public string ParserGid { get; set; } /// /// 解析器代码 /// public string ParserCode { get; set; } /// /// 解析器名称 /// public string ParserName { get; set; } /// /// 注入代码ID /// public string InjectId { get; set; } /// /// 注入代码 /// public string InjectCode { get; set; } /// /// 注入名称 /// public string InjectName { get; set; } /// /// 注入代码完整路径 /// public string InjectFullName { get; set; } } }