| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- using System.Collections.Generic;
- using Muchinfo.MTPClient.Adapter.Abstract;
- using System;
- using Muchinfo.MTPClient.Data;
- using Muchinfo.MTPClient.Data.Model;
- using Muchinfo.MTPClient.Data.Model.Message;
- namespace Muchinfo.MTPClient.Adapter.Json
- {
- public class AccountJsonAdapter : AccountAdapter
- {
- public override byte[] ToReqeustLogOut(ulong loginID)
- {
- throw new NotImplementedException();
- }
- public override Data.ResponeEntity<Data.Model.AccountInfoEntity> TolocalAccountInfoEntity(object obj)
- {
- throw new NotImplementedException();
- }
- public override byte[] ToReqeustAccountInfo(ulong accountCode)
- {
- throw new NotImplementedException();
- }
- public override Data.ResponeEntity<Data.Model.Account.TradeAccount> ToLocalAccountEntity(object obj)
- {
- throw new NotImplementedException();
- }
- public override Data.ResponeEntity<Data.Model.Account.TradeAccount> ToLocalLoginEntity(object obj)
- {
- throw new NotImplementedException();
- }
- public override byte[] ToTokenCheck(ulong loginID,string token, ulong octTime)
- {
- throw new NotImplementedException();
- }
- public override Data.ResponeEntity<ulong> GetTokenStatus(object obj)
- {
- throw new NotImplementedException();
- }
- public override byte[] ToReqeustLogin(int loginType, string passWord, ulong loginID, string guid, string loginIP, string systemDesc, string version, byte[] clientSystemInfo, string clientAppID)
- {
- throw new NotImplementedException();
- }
- public override byte[] ToReqeustModifyPwds(Data.Model.Account.AccountPwds accountPwds)
- {
- throw new NotImplementedException();
- }
- public override Data.ResponeEntity<int> ResponeModifyPWDEntity(object obj)
- {
- throw new NotImplementedException();
- }
- public override byte[] ToReqeustFuncMenu(string loginCode)
- {
- throw new NotImplementedException();
- }
- public override ResponeEntity<List<SysMenuItem>> ResponeLocalFuncMenu(object data)
- {
- throw new NotImplementedException();
- }
- public override byte[] ToReqeustTradeFeeRules(uint accountid)
- {
- throw new NotImplementedException();
- }
- public override ResponeEntity<List<Data.Model.GoodRules.TradeGoodsFeeRule>> ResoneLocalGoodsFeeRules(object data)
- {
- throw new NotImplementedException();
- }
- public override byte[] ToReqeustRiskChecked(ulong accountid, uint isChecked)
- {
- throw new NotImplementedException();
- }
- public override ResponeEntity<uint> ResponeRiskChecked(object data)
- {
- throw new NotImplementedException();
- }
- public override byte[] ToReqeustGoodsQueryReq(ulong GoodsUTime)
- {
- throw new NotImplementedException();
- }
- public override ResponeEntity<List<QuoteGoods>> ResponeGoodsQueryReq(object data)
- {
- throw new NotImplementedException();
- }
- public override byte[] ToReqeustLastUpdateTimeReq()
- {
- throw new NotImplementedException();
- }
- public override ResponeEntity<LastUpdateTimeModel> ResponeLastUpdateTimeReq(object data)
- {
- throw new NotImplementedException();
- }
-
- public override ResponeEntity<AccountBaseInfoModel> ResponeLoginQueryReq(object data)
- {
- throw new NotImplementedException();
- }
- public override byte[] ToReqeustRiskTipQueryReq(ulong RiskMsgUTime)
- {
- throw new NotImplementedException();
- }
- public override ResponeEntity<RiskTipQueryRspModel> ResponeRiskTipQueryReq(object data)
- {
- throw new NotImplementedException();
- }
- public override byte[] ToReqeustMarketsQueryReq(ulong MarketsUTime)
- {
- throw new NotImplementedException();
- }
- public override ResponeEntity<List<MarketsInfoModel>> ResponeMarketsQueryReq(object data)
- {
- throw new NotImplementedException();
- }
- public override byte[] ToReqeustDictionaryQueryReq(ulong DirctionaryUTime)
- {
- throw new NotImplementedException();
- }
- public override ResponeEntity<List<DictionaryInfoModel>> ResponeDictionaryQueryReq(object data)
- {
- throw new NotImplementedException();
- }
- public override byte[] ToReqeustErrorCodeQueryReq(ulong ErrorcodeUTime)
- {
- throw new NotImplementedException();
- }
- public override ResponeEntity<List<ErrorCodeInfoModel>> ResponeErrorCodeQueryReq(object data)
- {
- throw new NotImplementedException();
- }
- public override byte[] ToReqeustMarketRunQueryReq(string TradeDate)
- {
- throw new NotImplementedException();
- }
- public override ResponeEntity<MarketRunQueryRspModel> ResponeMarketRunQueryReq(object data)
- {
- throw new NotImplementedException();
- }
- public override byte[] ToReqeustConfigQueryReq(ulong ConfigUTime)
- {
- throw new NotImplementedException();
- }
- public override ResponeEntity<List<ConfigInfoModel>> ResponeConfigQueryReq(object data)
- {
- throw new NotImplementedException();
- }
- public override byte[] ToReqeustLoginQueryReq(ulong accountId, string queryType)
- {
- throw new NotImplementedException();
- }
- public override byte[] ToReqeustNoticeQuery(ulong AccountId, long LastNoticeId)
- {
- throw new NotImplementedException();
- }
- public override ResponeEntity<List<NoticeMsg>> ResponeNoticeQuery(object data)
- {
- throw new NotImplementedException();
- }
- public override byte[] ToReqeustFuncMenuQueryReq(ulong MenuUTime)
- {
- throw new NotImplementedException();
- }
- public override byte[] ToReqeustDeliveryGoodsReq(ulong DeliveryGoodsUTime)
- {
- throw new NotImplementedException();
- }
- public override ResponeEntity<List<DeliveryGoodsInfoModel>> ResponeDeliveryGoodsReq(object data)
- {
- throw new NotImplementedException();
- }
- public override byte[] ToExternalExchangeReq()
- {
- throw new NotImplementedException();
- }
- public override ResponeEntity<List<ExternalExchangeModel>> ResponseExternalExchange(object data)
- {
- throw new NotImplementedException();
- }
- public override byte[] ToGoodsGroupReq()
- {
- throw new NotImplementedException();
- }
- public override ResponeEntity<List<GoodsGroup>> ResponseGoodsGroup(object data)
- {
- throw new NotImplementedException();
- }
- }
- }
|