You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.0 KiB
27 lines
1.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CK.SCP.Models.ScpEntity.ExcelExportEnttity
|
|
{
|
|
public class SCP_INVOICE_EXPORT
|
|
{
|
|
|
|
public string 状态 {get;set;}// "State_DESC",
|
|
public string 发票编号 { get;set; }// "InvcBillNum
|
|
public string 金税票号 { get;set; }// "InvoiceNum",
|
|
public string 供应商 { get;set; }// "VendName",
|
|
public string 金额 { get;set; }// "Amount",
|
|
public string 税率 { get;set; }// "Tax",
|
|
public string 税额 { get;set; }// "TaxAmount",
|
|
public string 折扣金额 { get;set; }// "ContractPrice",
|
|
public string 税额调整 { get;set; }// "BlancePrice",
|
|
public string 开票金额 { get;set; }// "Total",
|
|
public string 创建时间 { get; set; }// "CreateTime",
|
|
public string 快递单号 { get; set; }// "ExpressNum",
|
|
public string 备注 { get; set; } // "Remark",
|
|
|
|
}
|
|
}
|
|
|