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