移除getPreSettlementInfo

This commit is contained in:
aozhiwei 2021-11-23 12:10:44 +08:00
parent e6851ab549
commit d39f92c6fe
2 changed files with 0 additions and 23 deletions

View File

@ -61,17 +61,6 @@ class Role(object):
_common.RspHead(), _common.RspHead(),
] ]
}, },
{
'desc': 'getPreSettlementInfo',
'group': 'Role',
'url': 'webapp/index.php?c=Role&a=getPreSettlementInfo',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
]
},
{ {
'desc': 'getRobotInfo', 'desc': 'getRobotInfo',
'group': 'Role', 'group': 'Role',

View File

@ -343,18 +343,6 @@ class RoleController extends BaseAuthedController {
)); ));
} }
public function getPreSettlementInfo()
{
$account_id = $_REQUEST['account_id'];
$conn = $this->getMysql($account_id);
$pre_settlement_info = '';
echo json_encode(array(
'errcode' => 0,
'errmsg' => '',
'pre_settlement_info' => $pre_settlement_info
));
}
public function getRobotInfo() public function getRobotInfo()
{ {
$account_id = $_REQUEST['account_id']; $account_id = $_REQUEST['account_id'];