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.
97 lines
2.9 KiB
C#
97 lines
2.9 KiB
C#
using DS.Module.Core.Enums;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// 发票申请明细
|
|
/// </summary>
|
|
[SugarTable("application_invoice_detail", TableDescription = "发票申请明细")]
|
|
public class InvoiceDetail
|
|
{
|
|
/// <summary>
|
|
/// 主键ID
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 申请单ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "申请单ID", IsNullable = false)]
|
|
public long ApplicationId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发票商品编码ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "发票商品编码ID", IsNullable = true)]
|
|
public long? CodeId { get; set; }
|
|
|
|
///// <summary>
|
|
///// 发票商品编码
|
|
///// </summary>
|
|
//[Navigate(NavigateType.OneToOne, nameof(CodeId))]
|
|
//public CodeInvoice? CodeInvoice { get; set; }
|
|
|
|
/// <summary>
|
|
/// 明细项名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "明细项名称", Length = 100, IsNullable = false)]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 规格型号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "规格型号", Length = 100, IsNullable = true)]
|
|
public string? Specification { get; set; }
|
|
|
|
/// <summary>
|
|
/// 单位
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "单位", IsNullable = true, Length = 50)]
|
|
public string? Unit { get; set; }
|
|
|
|
/// <summary>
|
|
/// 单价(不含税)
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "单价", IsNullable = false)]
|
|
public decimal UnitPrice { get; set; }
|
|
|
|
/// <summary>
|
|
/// 含税单价
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "含税单价", IsNullable = false)]
|
|
public decimal TaxUnitPrice { get; set; }
|
|
|
|
/// <summary>
|
|
/// 税率
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "税率", IsNullable = false)]
|
|
public decimal TaxRate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 税额
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "税额", IsNullable = false)]
|
|
public decimal TaxAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数量
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "数量", IsNullable = false)]
|
|
public int Quantity { get; set; } = 1;
|
|
|
|
/// <summary>
|
|
/// 含税总额
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "含税总额", IsNullable = false)]
|
|
public decimal Amount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 明细类别
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "类别", IsNullable = true)]
|
|
public DetailCategory Category { get; set; }
|
|
}
|
|
}
|