Purinmt.cs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. using System.ComponentModel.DataAnnotations;
  2. namespace SupplierWeb.Codes.EF
  3. {
  4. public partial class Purinmt
  5. {
  6. [Key]
  7. public int BillNo { get; set; }
  8. [Key]
  9. public string EntId { get; set; }
  10. public string BillCode { get; set; }
  11. public string RuleId { get; set; }
  12. public string Dates { get; set; }
  13. public string OnTime { get; set; }
  14. public string SysDates { get; set; }
  15. public string IsVat { get; set; }
  16. public string SuppliersId { get; set; }
  17. public string Address { get; set; }
  18. public string AccptId { get; set; }
  19. public string SaleManId { get; set; }
  20. public string Caozy { get; set; }
  21. public string OrgId { get; set; }
  22. public string DeptId { get; set; }
  23. public string ContractCode { get; set; }
  24. public string Invoice { get; set; }
  25. public string Delivery { get; set; }
  26. public string PayType { get; set; }
  27. public string OlderNo { get; set; }
  28. public decimal? Amount { get; set; }
  29. public decimal? Tax { get; set; }
  30. public decimal? TaxAmount { get; set; }
  31. public decimal? RetailAmt { get; set; }
  32. public decimal? CostAmt { get; set; }
  33. public decimal? Profit { get; set; }
  34. public string Summaries { get; set; }
  35. public string Remark { get; set; }
  36. public string PayOrgId { get; set; }
  37. public string CurrencyId { get; set; }
  38. public decimal? Paijia { get; set; }
  39. public decimal? DedRate { get; set; }
  40. public string IsInvoice { get; set; }
  41. public string IsDone { get; set; }
  42. public string CurCode { get; set; }
  43. public string OppContId { get; set; }
  44. public string IsPrepay { get; set; }
  45. public decimal? PrepayAmt { get; set; }
  46. public string WareManId { get; set; }
  47. public string Isch { get; set; }
  48. public string Ischwc { get; set; }
  49. public string K_DFBillCode { get; set; }
  50. public string K_BillCode { get; set; }
  51. public string AcceptId { get; set; }
  52. public string K_IsLS { get; set; }
  53. public string K_IsTQ { get; set; }
  54. public string K_IsYXD { get; set; }
  55. }
  56. }