using System; using System.Collections.Generic; using System.Linq; using System.Text; //---------------------------------------------------------------- //Module Name: $safeprojectname$ //Purpose: //CopyRight: Muchinfo //History: //---------------------------------------------------------------- //DateTime 2016/4/1 15:16:08 //Author //Description Create //---------------------------------------------------------------- namespace Muchinfo.MTPClient.Data.Enums { /// /// 保证金比例 /// public enum MarginRate { /// /// 10倍 /// Margin10=1, /// /// 20倍 /// Margin20 = 2, /// /// 30倍 /// Margin30 = 3, } }