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.
45 lines
1.0 KiB
C#
45 lines
1.0 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 StatusTriggerConditionShowDto: StatusTriggerConditionDto
|
|
{
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public DateTime CreatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 修改时间
|
|
/// </summary>
|
|
public Nullable<DateTime> UpdatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人ID
|
|
/// </summary>
|
|
public long CreatedUserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人名称
|
|
/// </summary>
|
|
public string CreatedUserName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 修改人ID
|
|
/// </summary>
|
|
public long UpdatedUserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 修改人名称
|
|
/// </summary>
|
|
public string UpdatedUserName { get; set; }
|
|
}
|
|
}
|