|
@@ -88,7 +88,6 @@ public class BrokerController extends BaseController {
|
88
|
88
|
return ResponseBean.success(result);
|
89
|
89
|
}
|
90
|
90
|
|
91
|
|
-
|
92
|
91
|
@RequestMapping(value="/wx/bindBroker",method= RequestMethod.PUT)
|
93
|
92
|
@ApiOperation(value="成为经纪人", notes = "成为经纪人", httpMethod = "PUT", response = ResponseBean.class)
|
94
|
93
|
public ResponseBean bindBroker(@ApiParam("经纪人信息") @RequestBody BrokerVO brokerVO,
|
|
@@ -105,6 +104,8 @@ public class BrokerController extends BaseController {
|
105
|
104
|
taPerson.setSettledCommission(null);
|
106
|
105
|
taPerson.setUnsettledCommission(null);
|
107
|
106
|
|
|
107
|
+ // 处理银行卡信息
|
|
108
|
+ iBkBankCardService.mergeList(personId, brokerVO.getBankCardList());
|
108
|
109
|
|
109
|
110
|
// 更新数据
|
110
|
111
|
if (!iTaPersonService.updateById(taPerson)) {
|