2024-03-11 合同发票修改
This commit is contained in:
@@ -0,0 +1,82 @@
|
||||
using MiniExcelLibs.Attributes;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class PHTGL_InvoiceDtoIn
|
||||
{
|
||||
/// <summary>
|
||||
/// 发票代码
|
||||
/// </summary>
|
||||
[ExcelColumnIndex("A")] public string InvoiceCode { get; set; }
|
||||
/// <summary>
|
||||
/// 发票号码
|
||||
/// </summary>
|
||||
[ExcelColumnIndex("B")] public string InvoiceNumber { get; set; }
|
||||
/// <summary>
|
||||
/// 销方名称
|
||||
/// </summary>
|
||||
[ExcelColumnIndex("C")] public string SellerName { get; set; }
|
||||
/// <summary>
|
||||
/// 开票日期
|
||||
/// </summary>
|
||||
[ExcelColumnIndex("D")] public string InvoiceDate { get; set; }
|
||||
/// <summary>
|
||||
/// 货物或应税劳务名称
|
||||
/// </summary>
|
||||
[ExcelColumnIndex("E")] public string GoodsOrServicesName { get; set; }
|
||||
/// <summary>
|
||||
/// 规格型号
|
||||
/// </summary>
|
||||
[ExcelColumnIndex("F")] public string SpecificationModel { get; set; }
|
||||
/// <summary>
|
||||
/// 单位
|
||||
/// </summary>
|
||||
[ExcelColumnIndex("G")] public string Unit { get; set; }
|
||||
/// <summary>
|
||||
/// 数量
|
||||
/// </summary>
|
||||
[ExcelColumnIndex("H")] public string Quantity { get; set; }
|
||||
/// <summary>
|
||||
/// 单价
|
||||
/// </summary>
|
||||
[ExcelColumnIndex("I")] public string UnitPrice { get; set; }
|
||||
/// <summary>
|
||||
/// 金额
|
||||
/// </summary>
|
||||
[ExcelColumnIndex("J")] public string Amount { get; set; }
|
||||
/// <summary>
|
||||
/// 税率
|
||||
/// </summary>
|
||||
[ExcelColumnIndex("K")] public string TaxRate { get; set; }
|
||||
/// <summary>
|
||||
/// 税额
|
||||
/// </summary>
|
||||
[ExcelColumnIndex("L")] public string Tax { get; set; }
|
||||
/// <summary>
|
||||
/// 不含税金额
|
||||
/// </summary>
|
||||
[ExcelColumnIndex("M")] public string AmountExcludingTax { get; set; }
|
||||
/// <summary>
|
||||
/// 合计税额
|
||||
/// </summary>
|
||||
[ExcelColumnIndex("N")] public string TotalTax { get; set; }
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
[ExcelColumnIndex("O")] public string Remark { get; set; }
|
||||
/// <summary>
|
||||
/// 图片存储路径
|
||||
/// </summary>
|
||||
[ExcelColumnIndex("P")] public string ImagePath { get; set; }
|
||||
/// <summary>
|
||||
/// 销方税号
|
||||
/// </summary>
|
||||
[ExcelColumnIndex("Q")] public string SellerTaxNumber { get; set; }
|
||||
/// <summary>
|
||||
/// 票面金额
|
||||
/// </summary>
|
||||
[ExcelColumnIndex("R")] public string InvoiceAmount { get; set; }
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user