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.
BookingHeChuan/Myshipping.Application/Service/EmailParserServerManage/Dto/EmailExcuteCodeInjectConfig...

45 lines
1009 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
/// <summary>
/// 邮件执行代码注入配置
/// </summary>
public class EmailExcuteCodeInjectConfigDto
{
/// <summary>
/// 主键
/// </summary>
public string GID { get; set; }
/// <summary>
/// 注入代码
/// </summary>
public string InjectCode { get; set; }
/// <summary>
/// 注入名称
/// </summary>
public string InjectName { get; set; }
/// <summary>
/// 注入代码完整路径
/// </summary>
public string InjectFullName { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreatedTime { get; set; }
/// <summary>
/// 更新时间
/// </summary>
public DateTime UpdatedTime { get; set; }
}
}