OutMoneyThresholdRatio.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. //----------------------------------------------------------------
  6. //Module Name: $safeprojectname$
  7. //Purpose:
  8. //CopyRight: Muchinfo
  9. //History:
  10. //----------------------------------------------------------------
  11. //DateTime 2016/12/2 11:00:05
  12. //Author
  13. //Description Create
  14. //----------------------------------------------------------------
  15. using Muchinfo.MTPClient.Data.Helper;
  16. namespace Muchinfo.MTPClient.Data.Model.Account
  17. {
  18. /// <summary>
  19. /// 出金阈值比例
  20. /// </summary>
  21. public class OutMoneyThresholdRatio
  22. {
  23. /// <summary>
  24. /// 出金比率
  25. /// </summary>
  26. [PropertyDisc("ThresholdRatio")]
  27. public decimal ThresholdRatio { get; set; }
  28. /// <summary>
  29. /// 出金净值
  30. /// </summary>
  31. [PropertyDisc("networth")]
  32. public decimal NetWorth { get; set; }
  33. /// <summary>
  34. /// 账号ID
  35. /// </summary>
  36. [PropertyDisc("accountid")]
  37. public long AccountId { get; set; }
  38. }
  39. }