using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Application.Entity
{
///
/// 订舱打印模板
///
[SugarTable("booking_print_template")]
[Description("订舱打印模板")]
public class BookingPrintTemplate : DBEntityTenant
{
///
/// 模板类型
///
public string TypeCode { get; set; }
///
/// 类型名称
///
public string TypeName { get; set; }
///
/// 文件路径
///
public string FilePath { get; set; }
///
/// 文件名称
///
public string FileName { get; set; }
///
/// 租户名称
///
public string TenantName { get; set; }
///
/// 主单
///
public bool IsMain { get; set; }
///
/// 分单
///
public bool IsSub { get; set; }
///
/// 显示名称
///
public string DisplayName { get; set; }
///
/// 分类代码
///
public string CateCode { get; set; }
///
/// 分类名称
///
public virtual string CateName { get; set; }
///
/// 类型:FastReport、Excel模板等
///
public virtual string Type { get; set; }
}
}