zhaoxinyu
5 months ago
4 changed files with 111 additions and 8 deletions
@ -0,0 +1,61 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.ComponentModel.DataAnnotations; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp.Domain.Entities; |
|||
|
|||
namespace Win.Sfs.SettleAccount.Entities.BQ |
|||
{ |
|||
public class INVOICE_GRP_EXTEND:Entity<Guid> |
|||
{ |
|||
|
|||
public string invoiceNumber { get; set; } |
|||
public string sasInvoiceNumber { get; set; } |
|||
public string Customer { get; set; } |
|||
public string BillTo { get; set; } |
|||
public DateTime InvoiceDate { get; set; } |
|||
public string Site { get; set; } |
|||
public string TYPE { get; set; } |
|||
public string PartNumber { get; set; } |
|||
public decimal InvoiceQuatity { get; set; } |
|||
public decimal Price { get; set; } |
|||
public string Supplier { get; set; } |
|||
public string Remark { get; set; } |
|||
public decimal InvoiceNetAmount { get; set; } |
|||
public decimal InvoiceTaxAmount { get; set; } |
|||
public decimal TaxRate { get; set; } |
|||
public string Location { get; set; } |
|||
public decimal InvoiceNet { get; set; } |
|||
public decimal InvoiceTax { get; set; } |
|||
public string commandtype { get; set; } |
|||
public string domain { get; set; } |
|||
public string LINE { get; set; } |
|||
|
|||
public INVOICE_GRP_EXTEND(string invoiceNumber, string sasInvoiceNumber, string customer, string billTo, DateTime invoiceDate, string site, string tYPE, string partNumber, decimal invoiceQuatity, decimal price, string supplier, string remark, decimal invoiceNetAmount, decimal invoiceTaxAmount, decimal taxRate, string location, decimal invoiceNet, decimal invoiceTax, string commandtype, string domain, string lINE) |
|||
{ |
|||
this.invoiceNumber = invoiceNumber; |
|||
this.sasInvoiceNumber = sasInvoiceNumber; |
|||
Customer = customer; |
|||
BillTo = billTo; |
|||
InvoiceDate = invoiceDate; |
|||
Site = site; |
|||
TYPE = tYPE; |
|||
PartNumber = partNumber; |
|||
InvoiceQuatity = invoiceQuatity; |
|||
Price = price; |
|||
Supplier = supplier; |
|||
Remark = remark; |
|||
InvoiceNetAmount = invoiceNetAmount; |
|||
InvoiceTaxAmount = invoiceTaxAmount; |
|||
TaxRate = taxRate; |
|||
Location = location; |
|||
InvoiceNet = invoiceNet; |
|||
InvoiceTax = invoiceTax; |
|||
this.commandtype = commandtype; |
|||
this.domain = domain; |
|||
LINE = lINE; |
|||
} |
|||
} |
|||
} |
Loading…
Reference in new issue