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.

35 lines
786 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 EmailUserAccountPageDto : EmailUserAccountDto
{
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreatedTime { get; set; }
/// <summary>
/// 更新时间
/// </summary>
public DateTime UpdatedTime { get; set; }
/// <summary>
/// 创建人
/// </summary>
public string CreatedUserName { get; set; }
/// <summary>
/// 更新人
/// </summary>
public string UpdatedUserName { get; set; }
}
}