| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- //----------------------------------------------------------------
- //Module Name: $safeprojectname$
- //Purpose:
- //CopyRight: Muchinfo
- //History:
- //----------------------------------------------------------------
- //DateTime 2016/12/2 11:00:05
- //Author
- //Description Create
- //----------------------------------------------------------------
- using Muchinfo.MTPClient.Data.Helper;
- namespace Muchinfo.MTPClient.Data.Model.Account
- {
- /// <summary>
- /// 出金阈值比例
- /// </summary>
- public class OutMoneyThresholdRatio
- {
- /// <summary>
- /// 出金比率
- /// </summary>
- [PropertyDisc("ThresholdRatio")]
- public decimal ThresholdRatio { get; set; }
- /// <summary>
- /// 出金净值
- /// </summary>
- [PropertyDisc("networth")]
- public decimal NetWorth { get; set; }
- /// <summary>
- /// 账号ID
- /// </summary>
- [PropertyDisc("accountid")]
- public long AccountId { get; set; }
- }
- }
|