TransitWalletCoinServices.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. namespace App\Service\Transit;
  3. use App\Model\Transit\TransitWalletCoin;
  4. class TransitWalletCoinServices
  5. {
  6. /**
  7. * 获取闪兑钱包列表
  8. * @param $type [0.读取 1.更新]
  9. */
  10. public function getList($type=0){
  11. $res = TransitWalletCoin::select('rid','transit_wallet_id','in_coin_name','out_coin_name','exchange_rate','kou_out_amount','min_transit_amount','max_transit_amount','comments','create_time')->orderBy('rid')->get();
  12. $data= array();
  13. if($res->count() > 0){
  14. $res = $res->toArray();
  15. foreach ($res as $key => $v) {
  16. $data[$v['rid']] = $v;
  17. }
  18. }
  19. return $data;
  20. }
  21. /**
  22. * 获取闪兑钱包ID和名称列表 [key为ID value为名称]
  23. * @param $type [0.列表格式1 1.列表格式2 2.列表格式3]
  24. */
  25. public function IDList($type=0){
  26. $data = $this->getList();
  27. $list = [];
  28. if(!empty($data)){
  29. switch ($type) {
  30. case 1:
  31. foreach ($data as $k => $v) {
  32. $list[$v['transit_wallet_id']][] = $v;
  33. }
  34. break;
  35. default:
  36. foreach ($data as $k => $v) {
  37. $list[$v['transit_wallet_id'].strtolower($v['in_coin_name'])] = $v;
  38. }
  39. break;
  40. }
  41. }
  42. return $list;
  43. }
  44. }