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/BookingTemplate/Dto/BookingTemplateOutput.cs

42 lines
869 B
C#

using System;
namespace Myshipping.Application
{
/// <summary>
/// 订舱模板输出参数
/// </summary>
public class BookingTemplateOutput
{
/// <summary>
/// 主键
/// </summary>
public long Id { get; set; }
/// <summary>
/// 标题
/// </summary>
public string Title { get; set; }
/// <summary>
/// 类型
/// </summary>
public BookingTemplateType Type { get; set; }
/// <summary>
/// 模板内容
/// </summary>
public string Content { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 租户ID
/// </summary>
public long TenantId { get; set; }
}
}