TradeRateTmpConfig.cs 825 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Muchinfo.MTPClient.Data.Helper;
  6. namespace Muchinfo.MTPClient.Data.Model.Account
  7. {
  8. public class TradeRateTmpConfig
  9. {
  10. [PropertyDisc("TradeRateTmpID")]
  11. public ulong TradeRateTmpId { get; set; }
  12. [PropertyDisc("OriCurrencyID")]
  13. public int OriCurrencyId { get; set; }
  14. [PropertyDisc("AccountID")]
  15. public ulong AccountId { get; set; }
  16. [PropertyDisc("ExchangeRate")]
  17. public decimal ExchangeRate { get; set; }
  18. // ************** 外部汇率模版配置表专用 **************
  19. [PropertyDisc("DesCurrencyID")]
  20. public int DesCurrencyId { get; set; }
  21. [PropertyDisc("TradeDate")]
  22. public string TradeDate { get; set; }
  23. }
  24. }