Invoicemt.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace SupplierWeb.Codes.EF
  6. {
  7. public partial class Invoicemt
  8. {
  9. public int BillNo { get; set; }
  10. public string EntId { get; set; }
  11. public string BillCode { get; set; }
  12. public string RuleId { get; set; }
  13. public string Dates { get; set; }
  14. public string OnTime { get; set; }
  15. public string SysDates { get; set; }
  16. public string InvoiceCode { get; set; }
  17. public string InvoiceRail { get; set; }
  18. public string RfId { get; set; }
  19. public string RfType { get; set; }
  20. public decimal? TaxAmount { get; set; }
  21. public decimal? Amount { get; set; }
  22. public decimal? Tax { get; set; }
  23. public string Caozy { get; set; }
  24. public string DeptId { get; set; }
  25. public string OrgId { get; set; }
  26. public string IsEnd { get; set; }
  27. public string Summaries { get; set; }
  28. public string Remark { get; set; }
  29. public string InvoiceType { get; set; }
  30. public decimal? BillAmt { get; set; }
  31. public string IsOut { get; set; }
  32. public string PayOrgId { get; set; }
  33. public string CurrencyId { get; set; }
  34. public string DirectorId { get; set; }
  35. public int? BillState { get; set; }
  36. public string InvoiceCat { get; set; }
  37. public string InvoiceHead { get; set; }
  38. public string TaxNo { get; set; }
  39. public int? SaleInvoSrc { get; set; }
  40. public string InvoiceDate { get; set; }
  41. public string StaffName { get; set; }
  42. public string Contact { get; set; }
  43. }
  44. }