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.

44 lines
1.3 KiB

2 years ago
  1. using Entity.Sugar;
  2. using System;
  3. namespace Entity.Sugar
  4. {
  5. public class OTB_OPM_BillChangeLog
  6. {
  7. public string OrgID { get; set; }
  8. public int? SN { get; set; }
  9. public string BillNO { get; set; }
  10. public string ExhibitioName { get; set; }
  11. public string PayerName { get; set; }
  12. public string ResponsiblePersonName { get; set; }
  13. public string Currency { get; set; }
  14. public string ExchangeRate { get; set; }
  15. /// <summary>
  16. /// 預收
  17. /// </summary>
  18. public string Advance { get; set; }
  19. /// <summary>
  20. /// 未稅金額
  21. /// </summary>
  22. public string AmountSum { get; set; }
  23. /// <summary>
  24. /// 稅金
  25. /// </summary>
  26. public string TaxSum { get; set; }
  27. /// <summary>
  28. /// 合計(未稅金額+稅金)
  29. /// </summary>
  30. public string AmountTaxSum { get; set; }
  31. /// <summary>
  32. /// 總應收
  33. /// </summary>
  34. public string TotalReceivable { get; set; }
  35. /// <summary>
  36. /// 建立進出口單據人員
  37. /// </summary>
  38. public string OpmBillCreateUserName { get; set; }
  39. public string Operation { get; set; }
  40. public string ModifyUser { get; set; }
  41. public DateTime? ModifyDate { get; set; }
  42. }
  43. }