#!/usr/bin/python
|
# -*- coding: GBK -*-
|
#-------------------------------------------------------------------------------
|
#
|
##@package PyMongoDataServer.GMToolLogicProcess.Commands.GMT_CompensationQueryPersonal
|
#
|
# @todo:¸öÈ˲¹³¥²éѯ¹ÜÀí
|
# @author hxp
|
# @date 2020-12-21
|
# @version 1.0
|
#
|
# ÏêϸÃèÊö: ¸öÈ˲¹³¥²éѯ¹ÜÀí
|
#
|
#-------------------------------------------------------------------------------
|
#"""Version = 2020-12-21 19:00"""
|
#-------------------------------------------------------------------------------
|
|
import GMCommon
|
|
## ÊÕµ½gmÃüÁîÖ´ÐÐ
|
# @param gmCmdDict:gmÃüÁî×Öµä
|
# @return None
|
def OnExec(gmCmdDict):
|
playerList = gmCmdDict.get("playerList", "") #Íæ¼ÒÁбí
|
|
if playerList == "":
|
return GMCommon.Def_ParamErr, "Please enter search player info!"
|
|
# »Ø¸´gm²ÎÊý´íÎó
|
return GMCommon.Def_DoQueryUserDB, ''
|
|
## ²éѯuserdb·µ»Ø
|
# @param userdb:userdb
|
# @param data:´«ÈëµÄÐÅÏ¢
|
# @param gmCmdDict:gmÃüÁî×Öµä
|
# @return None
|
def UserDBResponse(userdb, data, gmCmdDict):
|
return GMCommon.Def_SendToGameServer, ''
|
|
|