| | |
| | | /** |
| | | * 提现操作 |
| | | * @param money |
| | | * @param code |
| | | * @param name |
| | | * @param uid |
| | | * @throws Exception |
| | | */ |
| | | ResultUtil withdrawal(Double money, String code, String name, Integer uid, Integer type,String bankName) throws Exception; |
| | | ResultUtil withdrawal(Double money, Integer uid, Integer type, String remark, Integer language) throws Exception; |
| | | |
| | | |
| | | /** |
| | |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | List<Map<String, Object>> queryWithdrawal(Integer uid, Integer type, Integer pageNum, Integer size) throws Exception; |
| | | List<Map<String, Object>> queryWithdrawal(Integer language, Integer uid, Integer type, Integer state, Integer pageNum, Integer size) throws Exception; |
| | | |
| | | |
| | | /** |
| | |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | ResultUtil withdrawalAudit(Integer id, Integer state) throws Exception; |
| | | ResultUtil withdrawalAudit(Integer id, Integer state, Integer language) throws Exception; |
| | | |
| | | |
| | | /** |
| | | * 获提现总额 |
| | | * @param uid |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | Double queryWithdrawalSum(Integer uid, Integer type) throws Exception; |
| | | } |