Change-Id: I5eae3e6e829803828a41c254432a4bd2d2f76242
This commit is contained in:
vguanyiwgd 2024-05-11 17:25:13 +08:00
parent fdf92ed3c9
commit e122c4ac26
1 changed files with 7 additions and 0 deletions

View File

@ -367,6 +367,13 @@ class Recharge extends REST_Controller
'data' => array() 'data' => array()
), REST_Controller::HTTP_OK); ), REST_Controller::HTTP_OK);
} }
if(!in_array($touser->type_id, [200,201,202,204,206,208,218,224,225,234,239,272])){
$this->response(array(
'status' => 0,
'message' => '对方的用户类型不支持余额转移功能',
'data' => array()
), REST_Controller::HTTP_OK);
}
} }