12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace SupplierWeb.Codes.EF
- {
- public partial class Invoicemt
- {
- public int BillNo { get; set; }
- public string EntId { get; set; }
- public string BillCode { get; set; }
- public string RuleId { get; set; }
- public string Dates { get; set; }
- public string OnTime { get; set; }
- public string SysDates { get; set; }
- public string InvoiceCode { get; set; }
- public string InvoiceRail { get; set; }
- public string RfId { get; set; }
- public string RfType { get; set; }
- public decimal? TaxAmount { get; set; }
- public decimal? Amount { get; set; }
- public decimal? Tax { get; set; }
- public string Caozy { get; set; }
- public string DeptId { get; set; }
- public string OrgId { get; set; }
- public string IsEnd { get; set; }
- public string Summaries { get; set; }
- public string Remark { get; set; }
- public string InvoiceType { get; set; }
- public decimal? BillAmt { get; set; }
- public string IsOut { get; set; }
- public string PayOrgId { get; set; }
- public string CurrencyId { get; set; }
- public string DirectorId { get; set; }
- public int? BillState { get; set; }
- public string InvoiceCat { get; set; }
- public string InvoiceHead { get; set; }
- public string TaxNo { get; set; }
- public int? SaleInvoSrc { get; set; }
- public string InvoiceDate { get; set; }
- public string StaffName { get; set; }
- public string Contact { get; set; }
- }
- }
|