Exemplo n.º 1
0
 public function handle_request_internal()
 {
     $userId = $this->_params['userId'];
     $id = $this->_params['id'];
     //获取快照信息
     $actionInfo = Model_Fyk_UserPropAction::getDataByPkAndUserId($id, $userId);
     $body = json_decode($actionInfo['body'], true);
     $checkMsg = json_decode($actionInfo['checkMsg'], true);
     $data = $this->checkData($body, $checkMsg, $actionInfo['status']);
     $result = array('status' => 'ok', 'data' => $data);
     return $result;
 }