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.

48 lines
1.7 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 ICSBidInfoDetail
  9. {
  10. public string BDID { get; set; }
  11. public decimal CastPrice { get; set; }
  12. public string ENTTRIBUTE1 { get; set; }
  13. public string ID { get; set; }
  14. public string InfoID { get; set; }
  15. public bool IsCast { get; set; }
  16. public bool IsDid { get; set; }
  17. public DateTime MTIME { get; set; }
  18. public string MUSER { get; set; }
  19. public string MUSERName { get; set; }
  20. public string Remarks { get; set; }
  21. public int RowNo { get; set; }
  22. public string WorkPoint { get; set; }
  23. public string BidCode { get; set; }
  24. public string ZBVendorCode { get; set; }
  25. public decimal WSCastPrice { get; set; }
  26. public int TaxAmount { get; set; }
  27. public string Currency { get; set; }
  28. public decimal MinPackQuantity { get; set; }
  29. public decimal MOQ { get; set; }
  30. public string Futures { get; set; }
  31. public string VenFullName { get; set; }
  32. public string Purchaser { get; set; }
  33. public string Origin { get; set; }
  34. public decimal DailyMetalPrices { get; set; }
  35. public decimal ProcessingFee { get; set; }
  36. public decimal? ExchangeRate { get; set; }
  37. public decimal? Tariff { get; set; }
  38. public decimal? VAT { get; set; }
  39. public decimal? TransportFee { get; set; }
  40. public string TradeMethod { get; set; }
  41. public string arrayShellFabricDetail { get; set; }
  42. public string VenRemark { get; set; }
  43. }
  44. }