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.

40 lines
1.4 KiB

4 days ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NFine.Domain._03_Entity.SRM
  7. {
  8. public class ICSBidInfoLog
  9. {
  10. public string BDID { get; set; }
  11. public string BidCode { get; set; }
  12. public decimal? CastPrice { get; set; }
  13. public string ENTTRIBUTE1 { get; set; }
  14. public string ID { get; set; }
  15. public string InfoID { get; set; }
  16. public bool? IsCast { get; set; }
  17. public DateTime MTIME { get; set; }
  18. public string MUSER { get; set; }
  19. public string MUSERName { get; set; }
  20. public string WorkPoint { get; set; }
  21. public decimal WSCastPrice { get; set; }
  22. public int TaxAmount { get; set; }
  23. public string Currency { get; set; }
  24. public decimal MinPackQuantity { get; set; }
  25. public decimal MOQ { get; set; }
  26. public string Futures { get; set; }
  27. public string VenFullName { get; set; }
  28. public string Purchaser { get; set; }
  29. public string Origin { get; set; }
  30. public decimal DailyMetalPrices { get; set; }
  31. public decimal ProcessingFee { get; set; }
  32. public decimal? ExchangeRate { get; set; }
  33. public decimal? Tariff { get; set; }
  34. public decimal? VAT { get; set; }
  35. public decimal?TransportFee { get; set; }
  36. public string TradeMethod { get; set; }
  37. }
  38. }