using System; using System.Collections.Generic; using System.Linq; using System.Text; using Muchinfo.MTPClient.Data.Helper; namespace Muchinfo.MTPClient.Data.Model.Account { public class TradeRateTmpConfig { [PropertyDisc("TradeRateTmpID")] public ulong TradeRateTmpId { get; set; } [PropertyDisc("OriCurrencyID")] public int OriCurrencyId { get; set; } [PropertyDisc("AccountID")] public ulong AccountId { get; set; } [PropertyDisc("ExchangeRate")] public decimal ExchangeRate { get; set; } // ************** 外部汇率模版配置表专用 ************** [PropertyDisc("DesCurrencyID")] public int DesCurrencyId { get; set; } [PropertyDisc("TradeDate")] public string TradeDate { get; set; } } }