using Muchinfo.MTPClient.Data.Helper;
namespace Muchinfo.MTPClient.Data.Enums
{
///
/// 交易菜单枚举
///
public enum TradeTreeMenu
{
///
/// 建仓
///
[KindDisc("Open", 2)]
Open = 1,
///
/// 平仓
///
[KindDisc("Close", 2)]
Close = 2,
///
/// 撤单
///
[KindDisc("CancelOrder", 2)]
CancelOrder = 3,
///
/// 资金信息
///
[KindDisc("AccountInfo", 8)]
AccountInfo = 4,
///
/// 委托单
///
[KindDisc(" EntrustOrder", 2)]
EntrustOrder = 5,
///
/// 持仓单
///
[KindDisc("HoldOrder", 2)]
HoldOrder = 6,
///
/// 持仓汇总
///
[KindDisc("Position", 2)]
Position = 7,
///
/// 平仓单
///
[KindDisc("CloseBill", 2)]
CloseOrder = 8,
///
/// 成交单
///
[KindDisc("CompleteOrder", 2)]
CompleteOrder = 9,
///
/// 商品成交流水查询
///
[KindDisc("GoodsDealQuery", 2)]
GoodsOrderQuety = 10,
///
/// 操作日志
///
[KindDisc("OperationLog", 2)]
OperationLog = 11,
///
/// 报表
///
[KindDisc("RepotForm", 2)]
UserReport = 12,
///
/// 公告
///
[KindDisc("Annoucement", 2)]
Notice = 13,
///
/// 通知
///
[KindDisc("Notice", 2)]
Ntf = 14,
///
/// 交收申报
///
[KindDisc("DeliveryDeclare", 4)]
DeliveryApply = 15,
///
/// 交收查询
///
[KindDisc("DeliveryQuery", 4)]
DeliveryQuety = 16,
///
/// 出金申请
///
[KindDisc("Withdraw", 8)]
AmountOutApply = 17,
///
/// 入金申请
///
[KindDisc("AmountInApply", 8)]
AmountInApply = 18,
///
/// 出入金查询
///
[KindDisc("AmountQuety", 8)]
AmountQuety = 19,
///
/// 银行签约
///
[KindDisc("BankSign", 8)]
BankSign = 20,
///
/// 银行解约
///
[KindDisc("BankBreak", 8)]
BankBreak = 21,
///
/// 交收单
///
[KindDisc("Delivery", 4)]
Delivery = 22,
///
/// 签约解约
///
[KindDisc("BreakSign", 8)]
BreakSign = 23,
///
/// 银行变更
///
[KindDisc("BankUpdate", 8)]
BankUpdate = 24,
///
/// 交收菜单
///
[KindDisc("DeliveryParent", 4)]
DeliveryParent = 25,
///
/// 资金流水
///
[KindDisc("AmountLog", 2)]
AmountLog = 26,
///
/// 交收管理
///
[KindDisc("DeliveryManage", 4)]
DeliveryManage = 40,
///
/// 交收申报
///
[KindDisc(" DeliveryAplly", 4)]
DeliveryAplly = 41,
///
/// 交收申报查询
///
[KindDisc("DeliveryApllyQuery", 4)]
DeliveryApllyQuery = 42,
///
/// 入库预约
///
[KindDisc("DeclareStorageAppointment", 4)]
DeclareStorageAppointment = 43,
///
/// 中间仓申报
///
[KindDisc("IntermediateBinDeclaration", 4)]
IntermediateBinDeclaration = 44,
///
/// 仓单转让
///
[KindDisc("WarehouseReceiptTransfer", 4)]
WarehouseReceiptTransfer = 50,
///
/// 中间仓查询
///
[KindDisc("IntermediateBinQuery", 4)]
IntermediateBinQuery = 45,
///
/// 入库预约查询
///
[KindDisc(" StorageManagement", 4)]
StorageManagement = 46,
///
/// 仓单管理
///
[KindDisc("WarehouseReceiptManagement", 4)]
WarehouseReceiptManagement = 47,
///
/// 仓单受让查询
///
[KindDisc("WarehouseReceiptTransferee", 4)]
WarehouseReceiptTransferee = 48,
///
/// 仓单流转查询
///
[KindDisc("WarehouseReceiptTransferQuery", 4)]
WarehouseReceiptTransferQuery = 49,
///
/// 交收配对行情查询
///
[KindDisc("DeliveryQuoteQuery", 4)]
DeliveryQuoteQuery = 53,
///
/// 提货预约申请
///
[KindDisc(" PickingGoodsApply", 4)]
PickingGoodsApply = 51,
///
/// 提货查询
///
[KindDisc("PickingGoodsQuery", 4)]
PickingGoodsQuery = 52,
///
/// 仓单流转明细
///
[KindDisc("WarehouseReceiptTransferDetail", 4)]
WarehouseReceiptTransferDetail = 54,
///
/// 货物宝
///
[KindDisc("FinacingProducts", 32)]
FinancingAndInvestment = 55,
///
/// 货物宝产品查询
///
[KindDisc("FinacingGoodsQuery", 32)]
QueryInvestment = 56,
///
/// 货物宝项目
///
[KindDisc("FinacingMyFinacingProduct", 32)]
MyFinancingProject = 57,
///
/// 我的货物宝合约
///
[KindDisc("FinacingMyFinacingContract", 32)]
MyInvestmentContract = 58,
///
/// 转让货物宝合约
///
[KindDisc("FinacingTransferGoodsContract", 32)]
QueryTransferContract = 59,
///
///货物宝报表
///
[KindDisc("FinacingProductsReport", 32)]
FinancingAndInvestmentReport = 60,
///
/// 申购单
///
[KindDisc("申购单", 64)]
QueryDealPurchase = 61,
}
}