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/BookingSoTemplate/Dto/BookingSoTemplateOutput.cs

41 lines
938 B
C#

using System;
using System.ComponentModel.DataAnnotations;
namespace Myshipping.Application
{
/// <summary>
/// 订舱模板列表输出参数
/// </summary>
public class BookingSoTemplateListOutput : BookingSoTemplateDto
{
/// <summary>
/// 创建时间
/// </summary>
public virtual string CreatedTime { get; set; }
/// <summary>
/// 更新时间
/// </summary>
public virtual string UpdatedTime { get; set; }
/// <summary>
/// 创建者名称
/// </summary>
public virtual string CreatedUserName { get; set; }
/// <summary>
/// 修改者名称
/// </summary>
public virtual string UpdatedUserName { get; set; }
}
/// <summary>
/// 订舱模板详情输出参数
/// </summary>
public class BookingSoTemplateDetailOutput : BookingSoTemplateDto
{
}
}