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.
26 lines
586 B
C#
26 lines
586 B
C#
using System;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
using Myshipping.Core.Entity;
|
|
namespace Myshipping.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// EXCEl打印模板
|
|
/// </summary>
|
|
[SugarTable("booking_exceltemplate")]
|
|
[Description("EXCEl打印模板")]
|
|
public class BookingExcelTemplate : DBEntityTenant
|
|
{
|
|
|
|
/// <summary>
|
|
/// 模板名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 分类
|
|
/// </summary>
|
|
public string Type { get; set; }
|
|
|
|
}
|
|
} |