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 { /// /// 出金阈值比例 /// public class OutMoneyThresholdRatio { /// /// 出金比率 /// [PropertyDisc("ThresholdRatio")] public decimal ThresholdRatio { get; set; } /// /// 出金净值 /// [PropertyDisc("networth")] public decimal NetWorth { get; set; } /// /// 账号ID /// [PropertyDisc("accountid")] public long AccountId { get; set; } } }