using System; using System.Collections.Generic; using System.Linq; using System.Text; //---------------------------------------------------------------- //Module Name: $safeprojectname$ //Purpose: //CopyRight: Muchinfo //History: //---------------------------------------------------------------- //DateTime 2016/3/28 9:04:55 //Author //Description Create //---------------------------------------------------------------- using Muchinfo.MTPClient.Data.Helper; namespace Muchinfo.MTPClient.Data.Enums { public enum OpenCloseMode { /// /// 建仓 /// BUILDTYPE_OPEN=1, /// /// 平仓 /// BUILDTYPE_CLOSE=2, /// /// 先平后建 /// BUILDTYPE_CLOSETHENOPEN=3 } }