| | |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | ResultUtil saveBankCard(String bank, String name, String code, Integer driverId,String bankName) throws Exception; |
| | | ResultUtil saveBankCard(String bank, String lastName,String firstName, String code, Integer driverId, Integer language) throws Exception; |
| | | |
| | | ResultUtil updateBankCard(Integer id, String bank, String name, String code, Integer driverId,String bankName) throws Exception; |
| | | ResultUtil updateBankCard(Integer id, String bank, String lastName,String firstName, String code, Integer driverId, Integer language) throws Exception; |
| | | |
| | | /** |
| | | * 删除银行卡号 |
| | |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | ResultUtil delBankCard(Integer id, Integer driverId) throws Exception; |
| | | ResultUtil delBankCard(Integer id, Integer driverId, Integer language) throws Exception; |
| | | |
| | | |
| | | /** |