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.
64 lines
1.5 KiB
C#
64 lines
1.5 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 QueryEmailExcuteCodeInjectConfigDto : QueryPageBaseDto
|
|
{
|
|
/// <summary>
|
|
/// 注入代码
|
|
/// </summary>
|
|
public string InjectCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 注入名称
|
|
/// </summary>
|
|
public string InjectName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 注入代码完整路径
|
|
/// </summary>
|
|
public string InjectFullName { 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 CreateUser { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新人
|
|
/// </summary>
|
|
public string UpdateUser { get; set; }
|
|
}
|
|
}
|