using MiniExcelLibs.Attributes;
namespace Model
{
public class PHTGL_InvoiceDtoIn
{
///
/// 发票代码
///
[ExcelColumnIndex("A")] public string InvoiceCode { get; set; }
///
/// 发票号码
///
[ExcelColumnIndex("B")] public string InvoiceNumber { get; set; }
///
/// 销方名称
///
[ExcelColumnIndex("C")] public string SellerName { get; set; }
///
/// 开票日期
///
[ExcelColumnIndex("D")] public string InvoiceDate { get; set; }
///
/// 货物或应税劳务名称
///
[ExcelColumnIndex("E")] public string GoodsOrServicesName { get; set; }
///
/// 规格型号
///
[ExcelColumnIndex("F")] public string SpecificationModel { get; set; }
///
/// 单位
///
[ExcelColumnIndex("G")] public string Unit { get; set; }
///
/// 数量
///
[ExcelColumnIndex("H")] public string Quantity { get; set; }
///
/// 单价
///
[ExcelColumnIndex("I")] public string UnitPrice { get; set; }
///
/// 金额
///
[ExcelColumnIndex("J")] public string Amount { get; set; }
///
/// 税率
///
[ExcelColumnIndex("K")] public string TaxRate { get; set; }
///
/// 税额
///
[ExcelColumnIndex("L")] public string Tax { get; set; }
///
/// 不含税金额
///
[ExcelColumnIndex("M")] public string AmountExcludingTax { get; set; }
///
/// 合计税额
///
[ExcelColumnIndex("N")] public string TotalTax { get; set; }
///
/// 备注
///
[ExcelColumnIndex("O")] public string Remark { get; set; }
///
/// 图片存储路径
///
[ExcelColumnIndex("P")] public string ImagePath { get; set; }
///
/// 销方税号
///
[ExcelColumnIndex("Q")] public string SellerTaxNumber { get; set; }
///
/// 票面金额
///
[ExcelColumnIndex("R")] public string InvoiceAmount { get; set; }
}
}