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.
36 lines
1000 B
C#
36 lines
1000 B
C#
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.Info.Entity
|
|
{
|
|
/// <summary>
|
|
/// 发票抬头
|
|
/// </summary>
|
|
[SugarTable("invoice_header", TableDescription = "发票抬头")]
|
|
public class InvoiceHeader
|
|
{
|
|
/// <summary>
|
|
/// 主键ID
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 关联ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "关联ID", IsOnlyIgnoreUpdate = true)]
|
|
public long RelativeId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发票抬头
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "发票抬头", Length = 200, IsNullable = false)]
|
|
public string Header { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 地址电话
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "地址电话", Length = 200, IsNullable = true)]
|
|
public string? AddressTel { get; set; }
|
|
}
|
|
}
|