using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//----------------------------------------------------------------
//Module Name: $safeprojectname$
//Purpose:
//CopyRight: Muchinfo
//History:
//----------------------------------------------------------------
//DateTime 2016/5/16 15:36:22
//Author
//Description Create
//----------------------------------------------------------------
namespace Muchinfo.MTPClient.Data.Enums
{
public enum OrderModeView
{
///
/// 保证金模式
///
MarginMode=0,
///
/// 全额模式
///
FullPay=1,
///
/// 发售
///
SaleMode=2
}
}