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.

25 lines
709 B
C#

using DS.Module.Core.Data;
using SqlSugar;
namespace DS.WMS.Core.Application.Entity
{
/// <summary>
/// 发票模板
/// </summary>
[SugarTable("application_invoice_template", TableDescription = "发票模板")]
public class InvoiceTemplate : BaseModelV2<long>
{
/// <summary>
/// 模板名称
/// </summary>
[SugarColumn(ColumnDescription = "模板名称", Length = 50, IsNullable = false)]
public string Name { get; set; }
/// <summary>
/// 模板内容
/// </summary>
[SugarColumn(ColumnDescription = "模板内容", IsNullable = false, Length = 200)]
public string? Content { get; set; }
}
}