├── rsa_public_key.pem ├── 404.html ├── webpack.mix.js ├── server.php ├── index.html ├── rsa_private_key.pem ├── package.json ├── artisan ├── composer.json ├── README.md └── dcat_admin_ide_helper.php /rsa_public_key.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDa3p8F2vREDJ8X9aDIBmxgbJWI 3 | PCx9nQGSRloyQmQy2GKgAHEAct4uAdJsAN7+l61jpVfcp8fhRQtZgPtKW6bEM4mF 4 | UIpeDJy+twAeQi5e1hQTK4vMf10UacNMOoPVt6nhQ564afsLSiAx2JIg/ngDzJMx 5 | gbIjPxk3CIy/5PvwKwIDAQAB 6 | -----END PUBLIC KEY----- 7 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 404 8 | 21 | 22 | 23 | 24 |

404,您请求的文件不存在!

25 | 26 | 27 | -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- 1 | const mix = require('laravel-mix'); 2 | 3 | /* 4 | |-------------------------------------------------------------------------- 5 | | Mix Asset Management 6 | |-------------------------------------------------------------------------- 7 | | 8 | | Mix provides a clean, fluent API for defining some Webpack build steps 9 | | for your Laravel application. By default, we are compiling the Sass 10 | | file for the application as well as bundling up all the JS files. 11 | | 12 | */ 13 | 14 | mix.js('resources/js/app.js', 'public/js') 15 | .sass('resources/sass/app.scss', 'public/css'); 16 | -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | $uri = urldecode( 11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) 12 | ); 13 | 14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the 15 | // built-in PHP web server. This provides a convenient way to test a Laravel 16 | // application without having installed a "real" web server software here. 17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { 18 | return false; 19 | } 20 | 21 | require_once __DIR__.'/public/index.php'; 22 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 恭喜,站点创建成功! 6 | 27 | 28 | 29 |
30 |

恭喜, 站点创建成功!

31 |

这是默认index.html,本页面由系统自动生成

32 | 37 |
38 | 39 | -------------------------------------------------------------------------------- /rsa_private_key.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | MIICXQIBAAKBgQDa3p8F2vREDJ8X9aDIBmxgbJWIPCx9nQGSRloyQmQy2GKgAHEA 3 | ct4uAdJsAN7+l61jpVfcp8fhRQtZgPtKW6bEM4mFUIpeDJy+twAeQi5e1hQTK4vM 4 | f10UacNMOoPVt6nhQ564afsLSiAx2JIg/ngDzJMxgbIjPxk3CIy/5PvwKwIDAQAB 5 | AoGBAJIIPZQ7jgUlYrUqxzcOyhrf+Dlo5Mp/CoBdfmrQT2h5ZfyZrsv82G9b+djk 6 | D+VQsHiu5luserm8RqFWZNQtKKu+U4lVFY5giySzQPE0mN8rXyDitwZ4rs2yBOCk 7 | uCVdAQTqxZxGbtxl7cPdLdUznClJdRvOSe6N8qNPUsWnxV5xAkEA7UdJaWUAa1ll 8 | RYSKs94ZQAY/fQsEUm0Zhelu/4eeaohE4cvSD5rwGszF57W+nQ0Ia/wBjmXUJhtR 9 | p8SKxHOhCQJBAOwjf/U6CQmfWf3FPy73dFg8CnUTpCGMfgC0XLhy0m1hq9zXa1IA 10 | r0CefsTvsLMUjW6Rnj2427k7/kWKYlIYuJMCQE2oHB2zYbzAiEWFSIPvt6HdqZ+6 11 | IFL9w/Gw4ZQeBbnmGW0w8PIMinKq/EaGk/kAj/YPh07cgt9p54KZ77S2B0kCQQCE 12 | wQBy8Qmbq0aAcJ+w29VAtaB7aWtgoQdFhiCKYaMDc2GXalQfadsczP4f4VDJnMhW 13 | XO9Fa+O7I4sztTTJSrSZAkB0epyYn51w7zVdZJcbHh46qrQlC0KjFNG26Sqc/T5l 14 | oPyGUw1SEHms9w5ZwzY8oXSi3SngSVRahmo+phw9BWnj 15 | -----END RSA PRIVATE KEY----- 16 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "dev": "npm run development", 5 | "development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", 6 | "watch": "npm run development -- --watch", 7 | "watch-poll": "npm run watch -- --watch-poll", 8 | "hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js", 9 | "prod": "npm run production", 10 | "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js" 11 | }, 12 | "devDependencies": { 13 | "axios": "^0.19", 14 | "bootstrap": "^4.1.0", 15 | "cross-env": "^5.1", 16 | "jquery": "^3.2", 17 | "laravel-mix": "^4.0.7", 18 | "lodash": "^4.17.13", 19 | "popper.js": "^1.12", 20 | "resolve-url-loader": "^2.3.1", 21 | "sass": "^1.15.2", 22 | "sass-loader": "^7.1.0", 23 | "vue": "^2.5.17" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | make(Illuminate\Contracts\Console\Kernel::class); 34 | 35 | $status = $kernel->handle( 36 | $input = new Symfony\Component\Console\Input\ArgvInput, 37 | new Symfony\Component\Console\Output\ConsoleOutput 38 | ); 39 | 40 | /* 41 | |-------------------------------------------------------------------------- 42 | | Shutdown The Application 43 | |-------------------------------------------------------------------------- 44 | | 45 | | Once Artisan has finished running, we will fire off the shutdown events 46 | | so that any final work may be done by the application before we shut 47 | | down the process. This is the last thing to happen to the request. 48 | | 49 | */ 50 | 51 | $kernel->terminate($input, $status); 52 | 53 | exit($status); 54 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "laravel/laravel", 3 | "type": "project", 4 | "description": "The Laravel Framework.", 5 | "keywords": [ 6 | "framework", 7 | "laravel" 8 | ], 9 | "license": "MIT", 10 | "require": { 11 | "php": "^7.3", 12 | "ext-curl": "*", 13 | "ext-json": "*", 14 | "astrotomic/laravel-translatable": "^11.8", 15 | "bacon/bacon-qr-code": "~1.0.3", 16 | "bitwasp/bitcoin": "^1.0", 17 | "ccxt/ccxt": "^1.55", 18 | "changzhong/extension-iframe-tabs": "^1.0", 19 | "dcat-admin-extension/ueditor": "dev-master", 20 | "dcat/easy-excel": "^1.0", 21 | "dcat/laravel-admin": "^1.7", 22 | "denpa/php-bitcoinrpc": "^2.1", 23 | "dingo/api": "^2.3", 24 | "fideloper/proxy": "^4.0", 25 | "fruitcake/laravel-cors": "^2.0", 26 | "guzzlehttp/guzzle": "6.5.2", 27 | "hhxsv5/laravel-s": "~3.7.0", 28 | "intervention/image": "^2.6", 29 | "jenssegers/agent": "^2.6", 30 | "jenssegers/mongodb": "^3.6", 31 | "laravel/framework": "6.*", 32 | "laravel/helpers": "^1.2", 33 | "laravel/tinker": "^1.0", 34 | "medz/id-card-of-china": "^1.1", 35 | "orangehill/iseed": "^3.0", 36 | "oscarafdev/migrations-generator": "^2.0", 37 | "overtrue/easy-sms": "^1.3", 38 | "pragmarx/google2fa-laravel": "^1.3", 39 | "predis/predis": "^1.1", 40 | "sc0vu/web3.php": "dev-master", 41 | "simplesoftwareio/simple-qrcode": "2.0.0", 42 | "swoole/ide-helper": "^4.5", 43 | "symfony/console": "4.3.4", 44 | "torann/geoip": "^1.2", 45 | "tymon/jwt-auth": "^1.0.0", 46 | "web3p/ethereum-tx": "dev-master", 47 | "workerman/channel": "^1.0", 48 | "workerman/gateway-worker": "^3.0", 49 | "workerman/gatewayclient": "^3.0", 50 | "workerman/http-client": "^0.1.6", 51 | "zgldh/qiniu-laravel-storage": "^0.10.3" 52 | }, 53 | "require-dev": { 54 | "beyondcode/laravel-dump-server": "^1.0", 55 | "filp/whoops": "^2.0", 56 | "fzaninotto/faker": "^1.4", 57 | "mockery/mockery": "^1.0", 58 | "nunomaduro/collision": "^3.0", 59 | "phpunit/phpunit": "^7.5" 60 | }, 61 | "config": { 62 | "optimize-autoloader": true, 63 | "preferred-install": "dist", 64 | "sort-packages": true, 65 | "platform-check": false 66 | }, 67 | "extra": { 68 | "laravel": { 69 | "dont-discover": [] 70 | } 71 | }, 72 | "autoload": { 73 | "psr-4": { 74 | "App\\": "app/" 75 | }, 76 | "classmap": [ 77 | "database/seeds", 78 | "database/factories" 79 | ], 80 | "files": [ 81 | "app/Common/functions.php" 82 | ] 83 | }, 84 | "autoload-dev": { 85 | "psr-4": { 86 | "Tests\\": "tests/" 87 | } 88 | }, 89 | "minimum-stability": "dev", 90 | "prefer-stable": true, 91 | "scripts": { 92 | "post-autoload-dump": [ 93 | "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", 94 | "@php artisan package:discover --ansi" 95 | ], 96 | "post-root-package-install": [ 97 | "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" 98 | ], 99 | "post-create-project-cmd": [ 100 | "@php artisan key:generate --ansi" 101 | ] 102 | } 103 | } 104 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 简介 2 | 开源交易所,基于laravel开发的区块链交易所 | 区块链BTC交易所 |区块链 ETH交易所 | 区块链交易所 | 区块链交易平台 | 区块链撮合交易引擎。区块链本项目有完整的撮合交易引擎源码、后台管理(后端+前端)、区块链前台(交易页面、活动页面 3 | 输入图片说明# 区块链项目 4 | 5 | # 介绍 6 | 区块链源码后端总后台源码laravel代码 7 | 8 | # 软件架构 9 | laravel框架搭建源码,使用workerman作为k线系统。使用redis做为缓存技术支持 10 | 11 | # 联系我们 12 | qq 29980928 13 | 微信:19180580919 14 | 飞机:@zhugegekaifa 15 | 16 | 在线客服: 复制粘贴链接:(https://kf.sykeji.vip/index/index/home?visiter_id=&visiter_name=&avatar=&business_id=3&groupid=2&special=3) {在线时间10:00-22:00} 17 | 18 | # 演示地址 19 | 20 | h5端: 21 | sj.sykeji.vip 22 | base@gmail.com 23 | 123456 24 | 25 | pc端: 26 | pcc.sykeji.vip 27 | base@gmail.com 28 | 123456 29 | 30 | 代理端: 31 | dl.sykeji.vip/admin 32 | 998007 33 | 123456 34 | 35 | 总后台: 36 | ht.sykeji.vip/admin 37 | admin 38 | 123456 39 | 40 | # 界面展示 41 | ![微信截图_20230713220045](https://github.com/zhugegedm/-laravel-BTC-ETH-/assets/54832494/20eccd08-cf4a-493e-bfda-51537532b1a1) 42 | ![微信截图_20230713220054](https://github.com/zhugegedm/-laravel-BTC-ETH-/assets/54832494/0ee3e8c6-d159-4581-abc8-b7f520f0569b) 43 | ![微信截图_20230713220209](https://github.com/zhugegedm/-laravel-BTC-ETH-/assets/54832494/0533bb10-6b96-4295-988c-5c3ddd243406) 44 | ![微信截图_20230713220151](https://github.com/zhugegedm/-laravel-BTC-ETH-/assets/54832494/e784473a-dd60-434e-a784-9758b7d364f3) 45 | ![微信截图_20230713220223](https://github.com/zhugegedm/-laravel-BTC-ETH-/assets/54832494/51f0c481-7be2-4af5-b4b9-f68696ab3186) 46 | ![微信截图_20230713220139](https://github.com/zhugegedm/-laravel-BTC-ETH-/assets/54832494/8ca3fa62-e7e1-4252-9a22-c3e31e4f517e) 47 | ![微信截图_20230713220103](https://github.com/zhugegedm/-laravel-BTC-ETH-/assets/54832494/f61955ab-151a-4384-af8c-1881b93c2714) 48 | ![微信截图_20230713220400](https://github.com/zhugegedm/-laravel-BTC-ETH-/assets/54832494/c317e7fb-43c4-4b20-b3b9-c33d4de377c0) 49 | ![微信截图_20230713220348](https://github.com/zhugegedm/-laravel-BTC-ETH-/assets/54832494/a392f5af-5b15-4ddf-8381-73d3a2d92b3f) 50 | ![微信截图_20230713220315](https://github.com/zhugegedm/-laravel-BTC-ETH-/assets/54832494/f8ed9f93-3a91-433e-a864-8c99084f8732) 51 | ![微信截图_20230713220309](https://github.com/zhugegedm/-laravel-BTC-ETH-/assets/54832494/72270f86-46fe-47b5-8e08-9f92c7d0f8f7) 52 | ![微信截图_20230713220303](https://github.com/zhugegedm/-laravel-BTC-ETH-/assets/54832494/3a2068e1-0a63-4951-b045-1a95aea3956f) 53 | 54 | 55 | 56 | 57 | # 功能说明 源码简介与安装说明: 58 | 59 | 开源交易所,基于laravel开发的交易所 | BTC交易所 | ETH交易所 | 交易所 | 交易平台 | 撮合交易引擎。本项目有完整的撮合交易引擎源码、后台管理(后端+前端)、前台(交易页面、活动页面、个人中心等)、安卓APP源码、苹果APP源码、币种钱包RPC源码。开源项目仅供学习参考,请勿用于非法用途。 60 | 61 | 特色: 62 | 63 | 1、基于内存撮合引擎,与传统基于数据库撮合更快 64 | 65 | 2、前后端分离,基于Token的Api授权机制 66 | 67 | 3、基于laravel服务架构,扩展更容易 68 | 69 | 4、MySQL、php、Redis多种数据存储方式,只为更快 70 | 71 | 5、主流币种对接区块链接口齐全,开箱即用 72 | 73 | 6、冷热钱包分离,两种提现方式,保证安全 74 | 75 | 7、机器人系统,同步行情,维护深度,防止搬砖 76 | 77 | 8、交易所设计者提供技术支持,部署+二开无忧 78 | 79 | 9、支持添加自定义平台币及其他币种 80 | 81 | 使用教程: 82 | 83 | 准备mysql数据库,创建名称为“xxxx”的数据库 84 | 85 | 准备redis缓存数据库 86 | 87 | 准备阿里云OSS(修改项目中需要配置的地方) 88 | 89 | 准备nginx,修改配置文件(可选,正式上线需配置) 90 | 91 | 修改framework代码中的配置文件为准备环境配置参数 92 | 93 | 打开mysql,导入framework代码中的sql文件夹中xxxxxxx.sql文件,注意,trigger的sql如果报错,需要针对wallet表添加trigger 94 | 95 | 运行前端vue项目 96 | 97 | 运行后端vue项目 98 | 99 | 运行钱包RPC 100 | 101 | 运行自动交易机器人程序(本部分代码未上传,但不影响) 102 | 103 | 运行Admin项目(该服务并不依赖其他服务,因此也可只运行此项目,直接查看后台) 104 | 105 | 核心功能说明(用户端) 106 | 107 | 注册/登录/实名认证/审核(目前仅支持手机,二次开发可加入邮件,很简单) 108 | 109 | Banner/公告/帮助/定制页面(Banner支持PC与APP分开设置,帮助支持各种分类模式) 110 | 111 | C2C交易/OTC交易(支持两种模式,项目早期可由平台承担C2C兑换,后期可开放OTC交易) 112 | 113 | 币币交易(支持限价委托、市价委托,二次开发可加入其它委托模式) 114 | 115 | 邀请注册/推广合伙人(支持对邀请推广人数、佣金进行以日、周、月的排行统计) 116 | 117 | 创新实验室(该部分支持功能较多,分项说明。另,APP暂不全部支持该功能) 118 | 119 | 6-1. 首发抢购活动模式(如发行新交易对时,可对交易对设置一定数量的币种进行抢购) 120 | 121 | 6-2. 首发分摊活动模式(如发行BTC/USDT交易对之前,官方拿出5BTC做活动,根据用户充值抵押的USDT多少进行均分BTC) 122 | 123 | 6-3. 控盘抢购模式(如发行ZZZ/USDT交易对之前,ZZZ币种价格为5USDT,官方发行活动价为0.5USDT,则可使用该模式) 124 | 125 | 6-4. 控盘均摊模式(如6-3,只不过平均分配) 126 | 127 | 6-5. 活动模式(支持用户抵押一定数量的币种,由官方承诺每月返还一定数量的币种) 128 | 129 | 红包功能(支持平台及官方发放一定数量币种的红包,此功能适合用户裂变) 130 | 131 | 用户资产管理、流水管理、委托管理、实名管理等各种基础管理 132 | 133 | 核心功能说明(管理端) 134 | 135 | 概要(查看平台运行数据,包含交易额、注册人数、充值等) 136 | 137 | 会员管理(会员信息管理、会员实名审核、会员实名管理、会员余额管理、会员充值/冻结余额等) 138 | 139 | 邀请管理(会员邀请信息、会员邀请排行管理) 140 | 141 | CTC管理(CTC订单管理、流水管理、承兑商管理) 142 | 143 | 内容管理(PC广告管理、APP广告管理、公告管理、帮助管理) 144 | 145 | 财务管理(充值提现管理、财务流水管理、对账管理、币种钱包余额管理) 146 | 147 | 币币管理(新建交易对、管理交易对、新建交易机器人、设置交易机器人参数、设置行情引擎/交易引擎、撤销所有委托) 148 | 149 | 活动管理(新建活动、认购、抢购/瓜分管理) 150 | 151 | 红包管理(平台红包管理、用户红包管理) 152 | 153 | 系统管理(角色管理、部门管理、用户管理、权限管理、币种管理、RPC管理、版本管理) 154 | 155 | 保证金管理(此功能设计时考虑到,但实际运营期间未使用到) 156 | 157 | 系统运行环境: 158 | 159 | Centos 6.8 160 | 161 | MySQL 5.5.16 162 | 163 | Redis-x64-3.2.100 164 | 165 | nginx-1.16.0 166 | 167 | Vue 168 | 169 | # 展示界面 170 | 输入图片说明 输入图片说明 输入图片说明 输入图片说明 输入图片说明 输入图片说明 输入图片说明 输入图片说明 输入图片说明 输入图片说 171 | -------------------------------------------------------------------------------- /dcat_admin_ide_helper.php: -------------------------------------------------------------------------------- 1 | 9 | */ 10 | namespace Dcat\Admin { 11 | use Illuminate\Support\Collection; 12 | 13 | /** 14 | * @property Grid\Column|Collection name 15 | * @property Grid\Column|Collection version 16 | * @property Grid\Column|Collection alias 17 | * @property Grid\Column|Collection authors 18 | * @property Grid\Column|Collection enable 19 | * @property Grid\Column|Collection imported 20 | * @property Grid\Column|Collection config 21 | * @property Grid\Column|Collection require 22 | * @property Grid\Column|Collection require_dev 23 | * @property Grid\Column|Collection user_id 24 | * @property Grid\Column|Collection account 25 | * @property Grid\Column|Collection username 26 | * @property Grid\Column|Collection pid 27 | * @property Grid\Column|Collection country_code 28 | * @property Grid\Column|Collection phone 29 | * @property Grid\Column|Collection email 30 | * @property Grid\Column|Collection avatar 31 | * @property Grid\Column|Collection invite_code 32 | * @property Grid\Column|Collection user_grade 33 | * @property Grid\Column|Collection user_auth_level 34 | * @property Grid\Column|Collection status 35 | * @property Grid\Column|Collection trade_status 36 | * @property Grid\Column|Collection last_login_time 37 | * @property Grid\Column|Collection last_login_ip 38 | * @property Grid\Column|Collection created_at 39 | * @property Grid\Column|Collection account_type 40 | * @property Grid\Column|Collection deep 41 | * @property Grid\Column|Collection path 42 | * @property Grid\Column|Collection password 43 | * @property Grid\Column|Collection payword 44 | * @property Grid\Column|Collection user_identity 45 | * @property Grid\Column|Collection login_code 46 | * @property Grid\Column|Collection reg_ip 47 | * @property Grid\Column|Collection updated_at 48 | * @property Grid\Column|Collection id 49 | * @property Grid\Column|Collection realname 50 | * @property Grid\Column|Collection id_card 51 | * @property Grid\Column|Collection front_img 52 | * @property Grid\Column|Collection back_img 53 | * @property Grid\Column|Collection hand_img 54 | * @property Grid\Column|Collection check_time 55 | * @property Grid\Column|Collection primary_status 56 | * @property Grid\Column|Collection coin_name 57 | * @property Grid\Column|Collection usable_balance 58 | * @property Grid\Column|Collection freeze_balance 59 | * @property Grid\Column|Collection address 60 | * @property Grid\Column|Collection log_type 61 | * @property Grid\Column|Collection rich_type 62 | * @property Grid\Column|Collection amount 63 | * @property Grid\Column|Collection log_note 64 | * @property Grid\Column|Collection before_balance 65 | * @property Grid\Column|Collection after_balance 66 | * @property Grid\Column|Collection draw_out_direction 67 | * @property Grid\Column|Collection into_direction 68 | * @property Grid\Column|Collection grade_id 69 | * @property Grid\Column|Collection grade_name 70 | * @property Grid\Column|Collection grade_img 71 | * @property Grid\Column|Collection ug_self_vol 72 | * @property Grid\Column|Collection ug_recommend_grade 73 | * @property Grid\Column|Collection ug_recommend_num 74 | * @property Grid\Column|Collection ug_total_vol 75 | * @property Grid\Column|Collection ug_direct_vol 76 | * @property Grid\Column|Collection ug_direct_vol_num 77 | * @property Grid\Column|Collection ug_direct_recharge 78 | * @property Grid\Column|Collection ug_direct_recharge_num 79 | * @property Grid\Column|Collection bonus 80 | * @property Grid\Column|Collection names 81 | * @property Grid\Column|Collection order 82 | * @property Grid\Column|Collection cover 83 | * @property Grid\Column|Collection body 84 | * @property Grid\Column|Collection category_id 85 | * @property Grid\Column|Collection view_count 86 | * @property Grid\Column|Collection is_recommend 87 | * @property Grid\Column|Collection admin_user_id 88 | * @property Grid\Column|Collection imgurl 89 | * @property Grid\Column|Collection location_type 90 | * @property Grid\Column|Collection tourl 91 | * @property Grid\Column|Collection tourl_type 92 | * @property Grid\Column|Collection pair_id 93 | * @property Grid\Column|Collection pair_name 94 | * @property Grid\Column|Collection base_coin_name 95 | * @property Grid\Column|Collection time_id 96 | * @property Grid\Column|Collection time_name 97 | * @property Grid\Column|Collection seconds 98 | * @property Grid\Column|Collection fee_rate 99 | * @property Grid\Column|Collection odds_up_range 100 | * @property Grid\Column|Collection odds_down_range 101 | * @property Grid\Column|Collection odds_draw_range 102 | * @property Grid\Column|Collection contact_phone 103 | * @property Grid\Column|Collection contact_position 104 | * @property Grid\Column|Collection listing_fee_budget 105 | * @property Grid\Column|Collection referrer_mechanism_code 106 | * @property Grid\Column|Collection issue_price 107 | * @property Grid\Column|Collection subscribe_currency 108 | * @property Grid\Column|Collection expected_time_online 109 | * @property Grid\Column|Collection start_subscription_time 110 | * @property Grid\Column|Collection end_subscription_time 111 | * @property Grid\Column|Collection announce_time 112 | * @property Grid\Column|Collection minimum_purchase 113 | * @property Grid\Column|Collection maximum_purchase 114 | * @property Grid\Column|Collection project_details 115 | * @property Grid\Column|Collection coin_id 116 | * @property Grid\Column|Collection collection_wallet 117 | * @property Grid\Column|Collection type 118 | * @property Grid\Column|Collection note 119 | * @property Grid\Column|Collection datetime 120 | * @property Grid\Column|Collection wallet_address 121 | * @property Grid\Column|Collection wallet_address_image 122 | * @property Grid\Column|Collection payment_method 123 | * @property Grid\Column|Collection receiving_account 124 | * @property Grid\Column|Collection payment_image 125 | * @property Grid\Column|Collection agent_level 126 | * @property Grid\Column|Collection agent_name 127 | * @property Grid\Column|Collection order_id 128 | * @property Grid\Column|Collection bet_amount 129 | * @property Grid\Column|Collection bet_coin_name 130 | * @property Grid\Column|Collection odds 131 | * @property Grid\Column|Collection range 132 | * @property Grid\Column|Collection fee 133 | * @property Grid\Column|Collection delivery_amount 134 | * @property Grid\Column|Collection delivery_time 135 | * @property Grid\Column|Collection order_no 136 | * @property Grid\Column|Collection up_down 137 | * @property Grid\Column|Collection scene_id 138 | * @property Grid\Column|Collection scene_sn 139 | * @property Grid\Column|Collection pair_time_name 140 | * @property Grid\Column|Collection begin_time 141 | * @property Grid\Column|Collection end_time 142 | * @property Grid\Column|Collection begin_price 143 | * @property Grid\Column|Collection end_price 144 | * @property Grid\Column|Collection delivery_up_down 145 | * @property Grid\Column|Collection delivery_range 146 | * @property Grid\Column|Collection process_note 147 | * @property Grid\Column|Collection process_time 148 | * @property Grid\Column|Collection contents 149 | * @property Grid\Column|Collection is_process 150 | * @property Grid\Column|Collection key 151 | * @property Grid\Column|Collection value 152 | * @property Grid\Column|Collection full_name 153 | * @property Grid\Column|Collection qty_decimals 154 | * @property Grid\Column|Collection price_decimals 155 | * @property Grid\Column|Collection withdrawal_fee 156 | * @property Grid\Column|Collection withdrawal_min 157 | * @property Grid\Column|Collection withdrawal_max 158 | * @property Grid\Column|Collection coin_withdraw_message 159 | * @property Grid\Column|Collection coin_recharge_message 160 | * @property Grid\Column|Collection coin_transfer_message 161 | * @property Grid\Column|Collection coin_content 162 | * @property Grid\Column|Collection coin_icon 163 | * @property Grid\Column|Collection symbol 164 | * @property Grid\Column|Collection quote_coin_id 165 | * @property Grid\Column|Collection quote_coin_name 166 | * @property Grid\Column|Collection base_coin_id 167 | * @property Grid\Column|Collection min_qty 168 | * @property Grid\Column|Collection min_total 169 | * @property Grid\Column|Collection sort 170 | * @property Grid\Column|Collection entrust_price 171 | * @property Grid\Column|Collection trigger_price 172 | * @property Grid\Column|Collection traded_amount 173 | * @property Grid\Column|Collection money 174 | * @property Grid\Column|Collection traded_money 175 | * @property Grid\Column|Collection cancel_time 176 | * @property Grid\Column|Collection hang_status 177 | * @property Grid\Column|Collection buy_order_no 178 | * @property Grid\Column|Collection sell_order_no 179 | * @property Grid\Column|Collection unit_price 180 | * @property Grid\Column|Collection trade_amount 181 | * @property Grid\Column|Collection trade_money 182 | * @property Grid\Column|Collection trade_buy_fee 183 | * @property Grid\Column|Collection trade_sell_fee 184 | * @property Grid\Column|Collection buy_user_id 185 | * @property Grid\Column|Collection sell_user_id 186 | * @property Grid\Column|Collection lang 187 | * @property Grid\Column|Collection json_content 188 | * @property Grid\Column|Collection file 189 | * @property Grid\Column|Collection url 190 | * @property Grid\Column|Collection img 191 | * @property Grid\Column|Collection link_type 192 | * @property Grid\Column|Collection link_data 193 | * @property Grid\Column|Collection desc 194 | * @property Grid\Column|Collection parent_id 195 | * @property Grid\Column|Collection icon 196 | * @property Grid\Column|Collection uri 197 | * @property Grid\Column|Collection method 198 | * @property Grid\Column|Collection ip 199 | * @property Grid\Column|Collection input 200 | * @property Grid\Column|Collection permission_id 201 | * @property Grid\Column|Collection menu_id 202 | * @property Grid\Column|Collection slug 203 | * @property Grid\Column|Collection http_method 204 | * @property Grid\Column|Collection http_path 205 | * @property Grid\Column|Collection role_id 206 | * @property Grid\Column|Collection module 207 | * @property Grid\Column|Collection tips 208 | * @property Grid\Column|Collection remember_token 209 | * @property Grid\Column|Collection locale 210 | * @property Grid\Column|Collection imgs 211 | * @property Grid\Column|Collection client_type 212 | * @property Grid\Column|Collection is_must 213 | * @property Grid\Column|Collection update_log 214 | * @property Grid\Column|Collection deleted_at 215 | * @property Grid\Column|Collection article_id 216 | * @property Grid\Column|Collection excerpt 217 | * @property Grid\Column|Collection b_id 218 | * @property Grid\Column|Collection nation_name 219 | * @property Grid\Column|Collection hand_time 220 | * @property Grid\Column|Collection bonusable_id 221 | * @property Grid\Column|Collection bonusable_type 222 | * @property Grid\Column|Collection center_wallet_id 223 | * @property Grid\Column|Collection center_wallet_name 224 | * @property Grid\Column|Collection center_wallet_account 225 | * @property Grid\Column|Collection center_wallet_address 226 | * @property Grid\Column|Collection center_wallet_password 227 | * @property Grid\Column|Collection center_wallet_balance 228 | * @property Grid\Column|Collection min_amount 229 | * @property Grid\Column|Collection appKey 230 | * @property Grid\Column|Collection appSecret 231 | * @property Grid\Column|Collection official_website_link 232 | * @property Grid\Column|Collection white_paper_link 233 | * @property Grid\Column|Collection block_query_link 234 | * @property Grid\Column|Collection publish_time 235 | * @property Grid\Column|Collection total_issuance 236 | * @property Grid\Column|Collection total_circulation 237 | * @property Grid\Column|Collection crowdfunding_price 238 | * @property Grid\Column|Collection is_withdraw 239 | * @property Grid\Column|Collection is_recharge 240 | * @property Grid\Column|Collection can_recharge 241 | * @property Grid\Column|Collection contract_id 242 | * @property Grid\Column|Collection margin_name 243 | * @property Grid\Column|Collection used_balance 244 | * @property Grid\Column|Collection bid_plus_unit 245 | * @property Grid\Column|Collection bid_plus_count 246 | * @property Grid\Column|Collection bid_minus_unit 247 | * @property Grid\Column|Collection bid_minus_count 248 | * @property Grid\Column|Collection ask_plus_unit 249 | * @property Grid\Column|Collection ask_plus_count 250 | * @property Grid\Column|Collection ask_minus_unit 251 | * @property Grid\Column|Collection ask_minus_count 252 | * @property Grid\Column|Collection order_type 253 | * @property Grid\Column|Collection side 254 | * @property Grid\Column|Collection contract_coin_id 255 | * @property Grid\Column|Collection lever_rate 256 | * @property Grid\Column|Collection margin 257 | * @property Grid\Column|Collection ts 258 | * @property Grid\Column|Collection buy_id 259 | * @property Grid\Column|Collection sell_id 260 | * @property Grid\Column|Collection contract_coin_name 261 | * @property Grid\Column|Collection unit_amount 262 | * @property Grid\Column|Collection maker_fee_rate 263 | * @property Grid\Column|Collection taker_fee_rate 264 | * @property Grid\Column|Collection lever_rage 265 | * @property Grid\Column|Collection max_qty 266 | * @property Grid\Column|Collection total_max_qty 267 | * @property Grid\Column|Collection margin_mode 268 | * @property Grid\Column|Collection liquidation_price 269 | * @property Grid\Column|Collection hold_position 270 | * @property Grid\Column|Collection avail_position 271 | * @property Grid\Column|Collection freeze_position 272 | * @property Grid\Column|Collection position_margin 273 | * @property Grid\Column|Collection avg_price 274 | * @property Grid\Column|Collection settlement_price 275 | * @property Grid\Column|Collection maintain_margin_rate 276 | * @property Grid\Column|Collection settled_pnl 277 | * @property Grid\Column|Collection realized_pnl 278 | * @property Grid\Column|Collection unrealized_pnl 279 | * @property Grid\Column|Collection code 280 | * @property Grid\Column|Collection en_name 281 | * @property Grid\Column|Collection Symbol 282 | * @property Grid\Column|Collection Date 283 | * @property Grid\Column|Collection Name 284 | * @property Grid\Column|Collection Open 285 | * @property Grid\Column|Collection High 286 | * @property Grid\Column|Collection Low 287 | * @property Grid\Column|Collection Close 288 | * @property Grid\Column|Collection LastClose 289 | * @property Grid\Column|Collection Price2 290 | * @property Grid\Column|Collection Price3 291 | * @property Grid\Column|Collection Open_Int 292 | * @property Grid\Column|Collection Volume 293 | * @property Grid\Column|Collection Amount 294 | * @property Grid\Column|Collection is_1min 295 | * @property Grid\Column|Collection is_5min 296 | * @property Grid\Column|Collection is_15min 297 | * @property Grid\Column|Collection is_30min 298 | * @property Grid\Column|Collection is_1h 299 | * @property Grid\Column|Collection is_2h 300 | * @property Grid\Column|Collection is_4h 301 | * @property Grid\Column|Collection is_6h 302 | * @property Grid\Column|Collection is_12h 303 | * @property Grid\Column|Collection is_day 304 | * @property Grid\Column|Collection is_week 305 | * @property Grid\Column|Collection is_month 306 | * @property Grid\Column|Collection connection 307 | * @property Grid\Column|Collection queue 308 | * @property Grid\Column|Collection payload 309 | * @property Grid\Column|Collection exception 310 | * @property Grid\Column|Collection failed_at 311 | * @property Grid\Column|Collection entrust_type 312 | * @property Grid\Column|Collection trigger_price_buy_rate 313 | * @property Grid\Column|Collection trigger_price_sell_rate 314 | * @property Grid\Column|Collection is_market 315 | * @property Grid\Column|Collection up_or_down 316 | * @property Grid\Column|Collection start_time 317 | * @property Grid\Column|Collection order_amount 318 | * @property Grid\Column|Collection bid_place_threshold 319 | * @property Grid\Column|Collection ask_place_threshold 320 | * @property Grid\Column|Collection attempts 321 | * @property Grid\Column|Collection reserved_at 322 | * @property Grid\Column|Collection available_at 323 | * @property Grid\Column|Collection coin_chinese_name 324 | * @property Grid\Column|Collection coin_market_price 325 | * @property Grid\Column|Collection contact_email 326 | * @property Grid\Column|Collection cotes_const 327 | * @property Grid\Column|Collection agency_personnel 328 | * @property Grid\Column|Collection currency_code 329 | * @property Grid\Column|Collection currency_identification 330 | * @property Grid\Column|Collection placement 331 | * @property Grid\Column|Collection official_website 332 | * @property Grid\Column|Collection currency_circulation 333 | * @property Grid\Column|Collection coin_turnover 334 | * @property Grid\Column|Collection coin_allocation_proportion 335 | * @property Grid\Column|Collection cash_people_counting 336 | * @property Grid\Column|Collection online_bourse 337 | * @property Grid\Column|Collection private_cemetery_price 338 | * @property Grid\Column|Collection block_network_type 339 | * @property Grid\Column|Collection currency_issue_date 340 | * @property Grid\Column|Collection blockchain_browser 341 | * @property Grid\Column|Collection official_wallet_address 342 | * @property Grid\Column|Collection contract_address 343 | * @property Grid\Column|Collection twitter_link 344 | * @property Grid\Column|Collection telegram_link 345 | * @property Grid\Column|Collection facebook_link 346 | * @property Grid\Column|Collection market_currency_quantity 347 | * @property Grid\Column|Collection currency_chinese_introduction 348 | * @property Grid\Column|Collection currency_english_introduction 349 | * @property Grid\Column|Collection remarks 350 | * @property Grid\Column|Collection white_paper 351 | * @property Grid\Column|Collection application_time 352 | * @property Grid\Column|Collection remark 353 | * @property Grid\Column|Collection n_id 354 | * @property Grid\Column|Collection notifiable_type 355 | * @property Grid\Column|Collection notifiable_id 356 | * @property Grid\Column|Collection data 357 | * @property Grid\Column|Collection read_at 358 | * @property Grid\Column|Collection max_amount 359 | * @property Grid\Column|Collection is_bet 360 | * @property Grid\Column|Collection up_odds 361 | * @property Grid\Column|Collection down_odds 362 | * @property Grid\Column|Collection draw_odds 363 | * @property Grid\Column|Collection bet_coin_id 364 | * @property Grid\Column|Collection odds_uuid 365 | * @property Grid\Column|Collection open 366 | * @property Grid\Column|Collection close 367 | * @property Grid\Column|Collection high 368 | * @property Grid\Column|Collection low 369 | * @property Grid\Column|Collection vol 370 | * @property Grid\Column|Collection price 371 | * @property Grid\Column|Collection count 372 | * @property Grid\Column|Collection time 373 | * @property Grid\Column|Collection open_time 374 | * @property Grid\Column|Collection country_id 375 | * @property Grid\Column|Collection birthday 376 | * @property Grid\Column|Collection city 377 | * @property Grid\Column|Collection postal_code 378 | * @property Grid\Column|Collection extra 379 | * @property Grid\Column|Collection grade_name_en 380 | * @property Grid\Column|Collection grade_name_tw 381 | * @property Grid\Column|Collection login_time 382 | * @property Grid\Column|Collection login_ip 383 | * @property Grid\Column|Collection login_site 384 | * @property Grid\Column|Collection login_type 385 | * @property Grid\Column|Collection describe 386 | * @property Grid\Column|Collection image 387 | * @property Grid\Column|Collection limit_amount 388 | * @property Grid\Column|Collection max_register_time 389 | * @property Grid\Column|Collection max_register_num 390 | * @property Grid\Column|Collection min_num 391 | * @property Grid\Column|Collection max_num 392 | * @property Grid\Column|Collection price_usd 393 | * @property Grid\Column|Collection card_enable 394 | * @property Grid\Column|Collection wechat_enable 395 | * @property Grid\Column|Collection alipay_enable 396 | * @property Grid\Column|Collection order_count 397 | * @property Grid\Column|Collection deal_count 398 | * @property Grid\Column|Collection deal_rate 399 | * @property Grid\Column|Collection deal_amount 400 | * @property Grid\Column|Collection video 401 | * @property Grid\Column|Collection coin_symbol 402 | * @property Grid\Column|Collection update_time 403 | * @property Grid\Column|Collection seller_uid 404 | * @property Grid\Column|Collection buyer_uid 405 | * @property Grid\Column|Collection other_uid 406 | * @property Grid\Column|Collection total_price_usd 407 | * @property Grid\Column|Collection total_price_cny 408 | * @property Grid\Column|Collection order_time 409 | * @property Grid\Column|Collection pay_time 410 | * @property Grid\Column|Collection deal_time 411 | * @property Grid\Column|Collection pay_type 412 | * @property Grid\Column|Collection bank_name 413 | * @property Grid\Column|Collection real_name 414 | * @property Grid\Column|Collection card_no 415 | * @property Grid\Column|Collection open_bank 416 | * @property Grid\Column|Collection code_img 417 | * @property Grid\Column|Collection txid 418 | * @property Grid\Column|Collection confirmations 419 | * @property Grid\Column|Collection amount_u 420 | * @property Grid\Column|Collection opt_type 421 | * @property Grid\Column|Collection en_project_details 422 | * @property Grid\Column|Collection payment_amount 423 | * @property Grid\Column|Collection payment_currency 424 | * @property Grid\Column|Collection subscription_time 425 | * @property Grid\Column|Collection subscription_currency_name 426 | * @property Grid\Column|Collection subscription_currency_amount 427 | * @property Grid\Column|Collection en_direction_out 428 | * @property Grid\Column|Collection en_direction_in 429 | * @property Grid\Column|Collection tw_direction_out 430 | * @property Grid\Column|Collection tw_direction_in 431 | * @property Grid\Column|Collection user_old_grade 432 | * @property Grid\Column|Collection user_new_grade 433 | * @property Grid\Column|Collection wallet_id 434 | * @property Grid\Column|Collection omni_wallet_address 435 | * @property Grid\Column|Collection s_user_id 436 | * @property Grid\Column|Collection logable_id 437 | * @property Grid\Column|Collection logable_type 438 | * @property Grid\Column|Collection address_note 439 | * @property Grid\Column|Collection address_type 440 | * @property Grid\Column|Collection total_amount 441 | * @property Grid\Column|Collection referrer 442 | * @property Grid\Column|Collection phone_status 443 | * @property Grid\Column|Collection email_status 444 | * @property Grid\Column|Collection google_token 445 | * @property Grid\Column|Collection google_status 446 | * @property Grid\Column|Collection second_verify 447 | * @property Grid\Column|Collection is_agency 448 | * @property Grid\Column|Collection is_system 449 | * @property Grid\Column|Collection trade_verify 450 | * @property Grid\Column|Collection from 451 | * @property Grid\Column|Collection to 452 | * 453 | * @method Grid\Column|Collection name(string $label = null) 454 | * @method Grid\Column|Collection version(string $label = null) 455 | * @method Grid\Column|Collection alias(string $label = null) 456 | * @method Grid\Column|Collection authors(string $label = null) 457 | * @method Grid\Column|Collection enable(string $label = null) 458 | * @method Grid\Column|Collection imported(string $label = null) 459 | * @method Grid\Column|Collection config(string $label = null) 460 | * @method Grid\Column|Collection require(string $label = null) 461 | * @method Grid\Column|Collection require_dev(string $label = null) 462 | * @method Grid\Column|Collection user_id(string $label = null) 463 | * @method Grid\Column|Collection account(string $label = null) 464 | * @method Grid\Column|Collection username(string $label = null) 465 | * @method Grid\Column|Collection pid(string $label = null) 466 | * @method Grid\Column|Collection country_code(string $label = null) 467 | * @method Grid\Column|Collection phone(string $label = null) 468 | * @method Grid\Column|Collection email(string $label = null) 469 | * @method Grid\Column|Collection avatar(string $label = null) 470 | * @method Grid\Column|Collection invite_code(string $label = null) 471 | * @method Grid\Column|Collection user_grade(string $label = null) 472 | * @method Grid\Column|Collection user_auth_level(string $label = null) 473 | * @method Grid\Column|Collection status(string $label = null) 474 | * @method Grid\Column|Collection trade_status(string $label = null) 475 | * @method Grid\Column|Collection last_login_time(string $label = null) 476 | * @method Grid\Column|Collection last_login_ip(string $label = null) 477 | * @method Grid\Column|Collection created_at(string $label = null) 478 | * @method Grid\Column|Collection account_type(string $label = null) 479 | * @method Grid\Column|Collection deep(string $label = null) 480 | * @method Grid\Column|Collection path(string $label = null) 481 | * @method Grid\Column|Collection password(string $label = null) 482 | * @method Grid\Column|Collection payword(string $label = null) 483 | * @method Grid\Column|Collection user_identity(string $label = null) 484 | * @method Grid\Column|Collection login_code(string $label = null) 485 | * @method Grid\Column|Collection reg_ip(string $label = null) 486 | * @method Grid\Column|Collection updated_at(string $label = null) 487 | * @method Grid\Column|Collection id(string $label = null) 488 | * @method Grid\Column|Collection realname(string $label = null) 489 | * @method Grid\Column|Collection id_card(string $label = null) 490 | * @method Grid\Column|Collection front_img(string $label = null) 491 | * @method Grid\Column|Collection back_img(string $label = null) 492 | * @method Grid\Column|Collection hand_img(string $label = null) 493 | * @method Grid\Column|Collection check_time(string $label = null) 494 | * @method Grid\Column|Collection primary_status(string $label = null) 495 | * @method Grid\Column|Collection coin_name(string $label = null) 496 | * @method Grid\Column|Collection usable_balance(string $label = null) 497 | * @method Grid\Column|Collection freeze_balance(string $label = null) 498 | * @method Grid\Column|Collection address(string $label = null) 499 | * @method Grid\Column|Collection log_type(string $label = null) 500 | * @method Grid\Column|Collection rich_type(string $label = null) 501 | * @method Grid\Column|Collection amount(string $label = null) 502 | * @method Grid\Column|Collection log_note(string $label = null) 503 | * @method Grid\Column|Collection before_balance(string $label = null) 504 | * @method Grid\Column|Collection after_balance(string $label = null) 505 | * @method Grid\Column|Collection draw_out_direction(string $label = null) 506 | * @method Grid\Column|Collection into_direction(string $label = null) 507 | * @method Grid\Column|Collection grade_id(string $label = null) 508 | * @method Grid\Column|Collection grade_name(string $label = null) 509 | * @method Grid\Column|Collection grade_img(string $label = null) 510 | * @method Grid\Column|Collection ug_self_vol(string $label = null) 511 | * @method Grid\Column|Collection ug_recommend_grade(string $label = null) 512 | * @method Grid\Column|Collection ug_recommend_num(string $label = null) 513 | * @method Grid\Column|Collection ug_total_vol(string $label = null) 514 | * @method Grid\Column|Collection ug_direct_vol(string $label = null) 515 | * @method Grid\Column|Collection ug_direct_vol_num(string $label = null) 516 | * @method Grid\Column|Collection ug_direct_recharge(string $label = null) 517 | * @method Grid\Column|Collection ug_direct_recharge_num(string $label = null) 518 | * @method Grid\Column|Collection bonus(string $label = null) 519 | * @method Grid\Column|Collection names(string $label = null) 520 | * @method Grid\Column|Collection order(string $label = null) 521 | * @method Grid\Column|Collection cover(string $label = null) 522 | * @method Grid\Column|Collection body(string $label = null) 523 | * @method Grid\Column|Collection category_id(string $label = null) 524 | * @method Grid\Column|Collection view_count(string $label = null) 525 | * @method Grid\Column|Collection is_recommend(string $label = null) 526 | * @method Grid\Column|Collection admin_user_id(string $label = null) 527 | * @method Grid\Column|Collection imgurl(string $label = null) 528 | * @method Grid\Column|Collection location_type(string $label = null) 529 | * @method Grid\Column|Collection tourl(string $label = null) 530 | * @method Grid\Column|Collection tourl_type(string $label = null) 531 | * @method Grid\Column|Collection pair_id(string $label = null) 532 | * @method Grid\Column|Collection pair_name(string $label = null) 533 | * @method Grid\Column|Collection base_coin_name(string $label = null) 534 | * @method Grid\Column|Collection time_id(string $label = null) 535 | * @method Grid\Column|Collection time_name(string $label = null) 536 | * @method Grid\Column|Collection seconds(string $label = null) 537 | * @method Grid\Column|Collection fee_rate(string $label = null) 538 | * @method Grid\Column|Collection odds_up_range(string $label = null) 539 | * @method Grid\Column|Collection odds_down_range(string $label = null) 540 | * @method Grid\Column|Collection odds_draw_range(string $label = null) 541 | * @method Grid\Column|Collection contact_phone(string $label = null) 542 | * @method Grid\Column|Collection contact_position(string $label = null) 543 | * @method Grid\Column|Collection listing_fee_budget(string $label = null) 544 | * @method Grid\Column|Collection referrer_mechanism_code(string $label = null) 545 | * @method Grid\Column|Collection issue_price(string $label = null) 546 | * @method Grid\Column|Collection subscribe_currency(string $label = null) 547 | * @method Grid\Column|Collection expected_time_online(string $label = null) 548 | * @method Grid\Column|Collection start_subscription_time(string $label = null) 549 | * @method Grid\Column|Collection end_subscription_time(string $label = null) 550 | * @method Grid\Column|Collection announce_time(string $label = null) 551 | * @method Grid\Column|Collection minimum_purchase(string $label = null) 552 | * @method Grid\Column|Collection maximum_purchase(string $label = null) 553 | * @method Grid\Column|Collection project_details(string $label = null) 554 | * @method Grid\Column|Collection coin_id(string $label = null) 555 | * @method Grid\Column|Collection collection_wallet(string $label = null) 556 | * @method Grid\Column|Collection type(string $label = null) 557 | * @method Grid\Column|Collection note(string $label = null) 558 | * @method Grid\Column|Collection datetime(string $label = null) 559 | * @method Grid\Column|Collection wallet_address(string $label = null) 560 | * @method Grid\Column|Collection wallet_address_image(string $label = null) 561 | * @method Grid\Column|Collection payment_method(string $label = null) 562 | * @method Grid\Column|Collection receiving_account(string $label = null) 563 | * @method Grid\Column|Collection payment_image(string $label = null) 564 | * @method Grid\Column|Collection agent_level(string $label = null) 565 | * @method Grid\Column|Collection agent_name(string $label = null) 566 | * @method Grid\Column|Collection order_id(string $label = null) 567 | * @method Grid\Column|Collection bet_amount(string $label = null) 568 | * @method Grid\Column|Collection bet_coin_name(string $label = null) 569 | * @method Grid\Column|Collection odds(string $label = null) 570 | * @method Grid\Column|Collection range(string $label = null) 571 | * @method Grid\Column|Collection fee(string $label = null) 572 | * @method Grid\Column|Collection delivery_amount(string $label = null) 573 | * @method Grid\Column|Collection delivery_time(string $label = null) 574 | * @method Grid\Column|Collection order_no(string $label = null) 575 | * @method Grid\Column|Collection up_down(string $label = null) 576 | * @method Grid\Column|Collection scene_id(string $label = null) 577 | * @method Grid\Column|Collection scene_sn(string $label = null) 578 | * @method Grid\Column|Collection pair_time_name(string $label = null) 579 | * @method Grid\Column|Collection begin_time(string $label = null) 580 | * @method Grid\Column|Collection end_time(string $label = null) 581 | * @method Grid\Column|Collection begin_price(string $label = null) 582 | * @method Grid\Column|Collection end_price(string $label = null) 583 | * @method Grid\Column|Collection delivery_up_down(string $label = null) 584 | * @method Grid\Column|Collection delivery_range(string $label = null) 585 | * @method Grid\Column|Collection process_note(string $label = null) 586 | * @method Grid\Column|Collection process_time(string $label = null) 587 | * @method Grid\Column|Collection contents(string $label = null) 588 | * @method Grid\Column|Collection is_process(string $label = null) 589 | * @method Grid\Column|Collection key(string $label = null) 590 | * @method Grid\Column|Collection value(string $label = null) 591 | * @method Grid\Column|Collection full_name(string $label = null) 592 | * @method Grid\Column|Collection qty_decimals(string $label = null) 593 | * @method Grid\Column|Collection price_decimals(string $label = null) 594 | * @method Grid\Column|Collection withdrawal_fee(string $label = null) 595 | * @method Grid\Column|Collection withdrawal_min(string $label = null) 596 | * @method Grid\Column|Collection withdrawal_max(string $label = null) 597 | * @method Grid\Column|Collection coin_withdraw_message(string $label = null) 598 | * @method Grid\Column|Collection coin_recharge_message(string $label = null) 599 | * @method Grid\Column|Collection coin_transfer_message(string $label = null) 600 | * @method Grid\Column|Collection coin_content(string $label = null) 601 | * @method Grid\Column|Collection coin_icon(string $label = null) 602 | * @method Grid\Column|Collection symbol(string $label = null) 603 | * @method Grid\Column|Collection quote_coin_id(string $label = null) 604 | * @method Grid\Column|Collection quote_coin_name(string $label = null) 605 | * @method Grid\Column|Collection base_coin_id(string $label = null) 606 | * @method Grid\Column|Collection min_qty(string $label = null) 607 | * @method Grid\Column|Collection min_total(string $label = null) 608 | * @method Grid\Column|Collection sort(string $label = null) 609 | * @method Grid\Column|Collection entrust_price(string $label = null) 610 | * @method Grid\Column|Collection trigger_price(string $label = null) 611 | * @method Grid\Column|Collection traded_amount(string $label = null) 612 | * @method Grid\Column|Collection money(string $label = null) 613 | * @method Grid\Column|Collection traded_money(string $label = null) 614 | * @method Grid\Column|Collection cancel_time(string $label = null) 615 | * @method Grid\Column|Collection hang_status(string $label = null) 616 | * @method Grid\Column|Collection buy_order_no(string $label = null) 617 | * @method Grid\Column|Collection sell_order_no(string $label = null) 618 | * @method Grid\Column|Collection unit_price(string $label = null) 619 | * @method Grid\Column|Collection trade_amount(string $label = null) 620 | * @method Grid\Column|Collection trade_money(string $label = null) 621 | * @method Grid\Column|Collection trade_buy_fee(string $label = null) 622 | * @method Grid\Column|Collection trade_sell_fee(string $label = null) 623 | * @method Grid\Column|Collection buy_user_id(string $label = null) 624 | * @method Grid\Column|Collection sell_user_id(string $label = null) 625 | * @method Grid\Column|Collection lang(string $label = null) 626 | * @method Grid\Column|Collection json_content(string $label = null) 627 | * @method Grid\Column|Collection file(string $label = null) 628 | * @method Grid\Column|Collection url(string $label = null) 629 | * @method Grid\Column|Collection img(string $label = null) 630 | * @method Grid\Column|Collection link_type(string $label = null) 631 | * @method Grid\Column|Collection link_data(string $label = null) 632 | * @method Grid\Column|Collection desc(string $label = null) 633 | * @method Grid\Column|Collection parent_id(string $label = null) 634 | * @method Grid\Column|Collection icon(string $label = null) 635 | * @method Grid\Column|Collection uri(string $label = null) 636 | * @method Grid\Column|Collection method(string $label = null) 637 | * @method Grid\Column|Collection ip(string $label = null) 638 | * @method Grid\Column|Collection input(string $label = null) 639 | * @method Grid\Column|Collection permission_id(string $label = null) 640 | * @method Grid\Column|Collection menu_id(string $label = null) 641 | * @method Grid\Column|Collection slug(string $label = null) 642 | * @method Grid\Column|Collection http_method(string $label = null) 643 | * @method Grid\Column|Collection http_path(string $label = null) 644 | * @method Grid\Column|Collection role_id(string $label = null) 645 | * @method Grid\Column|Collection module(string $label = null) 646 | * @method Grid\Column|Collection tips(string $label = null) 647 | * @method Grid\Column|Collection remember_token(string $label = null) 648 | * @method Grid\Column|Collection locale(string $label = null) 649 | * @method Grid\Column|Collection imgs(string $label = null) 650 | * @method Grid\Column|Collection client_type(string $label = null) 651 | * @method Grid\Column|Collection is_must(string $label = null) 652 | * @method Grid\Column|Collection update_log(string $label = null) 653 | * @method Grid\Column|Collection deleted_at(string $label = null) 654 | * @method Grid\Column|Collection article_id(string $label = null) 655 | * @method Grid\Column|Collection excerpt(string $label = null) 656 | * @method Grid\Column|Collection b_id(string $label = null) 657 | * @method Grid\Column|Collection nation_name(string $label = null) 658 | * @method Grid\Column|Collection hand_time(string $label = null) 659 | * @method Grid\Column|Collection bonusable_id(string $label = null) 660 | * @method Grid\Column|Collection bonusable_type(string $label = null) 661 | * @method Grid\Column|Collection center_wallet_id(string $label = null) 662 | * @method Grid\Column|Collection center_wallet_name(string $label = null) 663 | * @method Grid\Column|Collection center_wallet_account(string $label = null) 664 | * @method Grid\Column|Collection center_wallet_address(string $label = null) 665 | * @method Grid\Column|Collection center_wallet_password(string $label = null) 666 | * @method Grid\Column|Collection center_wallet_balance(string $label = null) 667 | * @method Grid\Column|Collection min_amount(string $label = null) 668 | * @method Grid\Column|Collection appKey(string $label = null) 669 | * @method Grid\Column|Collection appSecret(string $label = null) 670 | * @method Grid\Column|Collection official_website_link(string $label = null) 671 | * @method Grid\Column|Collection white_paper_link(string $label = null) 672 | * @method Grid\Column|Collection block_query_link(string $label = null) 673 | * @method Grid\Column|Collection publish_time(string $label = null) 674 | * @method Grid\Column|Collection total_issuance(string $label = null) 675 | * @method Grid\Column|Collection total_circulation(string $label = null) 676 | * @method Grid\Column|Collection crowdfunding_price(string $label = null) 677 | * @method Grid\Column|Collection is_withdraw(string $label = null) 678 | * @method Grid\Column|Collection is_recharge(string $label = null) 679 | * @method Grid\Column|Collection can_recharge(string $label = null) 680 | * @method Grid\Column|Collection contract_id(string $label = null) 681 | * @method Grid\Column|Collection margin_name(string $label = null) 682 | * @method Grid\Column|Collection used_balance(string $label = null) 683 | * @method Grid\Column|Collection bid_plus_unit(string $label = null) 684 | * @method Grid\Column|Collection bid_plus_count(string $label = null) 685 | * @method Grid\Column|Collection bid_minus_unit(string $label = null) 686 | * @method Grid\Column|Collection bid_minus_count(string $label = null) 687 | * @method Grid\Column|Collection ask_plus_unit(string $label = null) 688 | * @method Grid\Column|Collection ask_plus_count(string $label = null) 689 | * @method Grid\Column|Collection ask_minus_unit(string $label = null) 690 | * @method Grid\Column|Collection ask_minus_count(string $label = null) 691 | * @method Grid\Column|Collection order_type(string $label = null) 692 | * @method Grid\Column|Collection side(string $label = null) 693 | * @method Grid\Column|Collection contract_coin_id(string $label = null) 694 | * @method Grid\Column|Collection lever_rate(string $label = null) 695 | * @method Grid\Column|Collection margin(string $label = null) 696 | * @method Grid\Column|Collection ts(string $label = null) 697 | * @method Grid\Column|Collection buy_id(string $label = null) 698 | * @method Grid\Column|Collection sell_id(string $label = null) 699 | * @method Grid\Column|Collection contract_coin_name(string $label = null) 700 | * @method Grid\Column|Collection unit_amount(string $label = null) 701 | * @method Grid\Column|Collection maker_fee_rate(string $label = null) 702 | * @method Grid\Column|Collection taker_fee_rate(string $label = null) 703 | * @method Grid\Column|Collection lever_rage(string $label = null) 704 | * @method Grid\Column|Collection max_qty(string $label = null) 705 | * @method Grid\Column|Collection total_max_qty(string $label = null) 706 | * @method Grid\Column|Collection margin_mode(string $label = null) 707 | * @method Grid\Column|Collection liquidation_price(string $label = null) 708 | * @method Grid\Column|Collection hold_position(string $label = null) 709 | * @method Grid\Column|Collection avail_position(string $label = null) 710 | * @method Grid\Column|Collection freeze_position(string $label = null) 711 | * @method Grid\Column|Collection position_margin(string $label = null) 712 | * @method Grid\Column|Collection avg_price(string $label = null) 713 | * @method Grid\Column|Collection settlement_price(string $label = null) 714 | * @method Grid\Column|Collection maintain_margin_rate(string $label = null) 715 | * @method Grid\Column|Collection settled_pnl(string $label = null) 716 | * @method Grid\Column|Collection realized_pnl(string $label = null) 717 | * @method Grid\Column|Collection unrealized_pnl(string $label = null) 718 | * @method Grid\Column|Collection code(string $label = null) 719 | * @method Grid\Column|Collection en_name(string $label = null) 720 | * @method Grid\Column|Collection Symbol(string $label = null) 721 | * @method Grid\Column|Collection Date(string $label = null) 722 | * @method Grid\Column|Collection Name(string $label = null) 723 | * @method Grid\Column|Collection Open(string $label = null) 724 | * @method Grid\Column|Collection High(string $label = null) 725 | * @method Grid\Column|Collection Low(string $label = null) 726 | * @method Grid\Column|Collection Close(string $label = null) 727 | * @method Grid\Column|Collection LastClose(string $label = null) 728 | * @method Grid\Column|Collection Price2(string $label = null) 729 | * @method Grid\Column|Collection Price3(string $label = null) 730 | * @method Grid\Column|Collection Open_Int(string $label = null) 731 | * @method Grid\Column|Collection Volume(string $label = null) 732 | * @method Grid\Column|Collection Amount(string $label = null) 733 | * @method Grid\Column|Collection is_1min(string $label = null) 734 | * @method Grid\Column|Collection is_5min(string $label = null) 735 | * @method Grid\Column|Collection is_15min(string $label = null) 736 | * @method Grid\Column|Collection is_30min(string $label = null) 737 | * @method Grid\Column|Collection is_1h(string $label = null) 738 | * @method Grid\Column|Collection is_2h(string $label = null) 739 | * @method Grid\Column|Collection is_4h(string $label = null) 740 | * @method Grid\Column|Collection is_6h(string $label = null) 741 | * @method Grid\Column|Collection is_12h(string $label = null) 742 | * @method Grid\Column|Collection is_day(string $label = null) 743 | * @method Grid\Column|Collection is_week(string $label = null) 744 | * @method Grid\Column|Collection is_month(string $label = null) 745 | * @method Grid\Column|Collection connection(string $label = null) 746 | * @method Grid\Column|Collection queue(string $label = null) 747 | * @method Grid\Column|Collection payload(string $label = null) 748 | * @method Grid\Column|Collection exception(string $label = null) 749 | * @method Grid\Column|Collection failed_at(string $label = null) 750 | * @method Grid\Column|Collection entrust_type(string $label = null) 751 | * @method Grid\Column|Collection trigger_price_buy_rate(string $label = null) 752 | * @method Grid\Column|Collection trigger_price_sell_rate(string $label = null) 753 | * @method Grid\Column|Collection is_market(string $label = null) 754 | * @method Grid\Column|Collection up_or_down(string $label = null) 755 | * @method Grid\Column|Collection start_time(string $label = null) 756 | * @method Grid\Column|Collection order_amount(string $label = null) 757 | * @method Grid\Column|Collection bid_place_threshold(string $label = null) 758 | * @method Grid\Column|Collection ask_place_threshold(string $label = null) 759 | * @method Grid\Column|Collection attempts(string $label = null) 760 | * @method Grid\Column|Collection reserved_at(string $label = null) 761 | * @method Grid\Column|Collection available_at(string $label = null) 762 | * @method Grid\Column|Collection coin_chinese_name(string $label = null) 763 | * @method Grid\Column|Collection coin_market_price(string $label = null) 764 | * @method Grid\Column|Collection contact_email(string $label = null) 765 | * @method Grid\Column|Collection cotes_const(string $label = null) 766 | * @method Grid\Column|Collection agency_personnel(string $label = null) 767 | * @method Grid\Column|Collection currency_code(string $label = null) 768 | * @method Grid\Column|Collection currency_identification(string $label = null) 769 | * @method Grid\Column|Collection placement(string $label = null) 770 | * @method Grid\Column|Collection official_website(string $label = null) 771 | * @method Grid\Column|Collection currency_circulation(string $label = null) 772 | * @method Grid\Column|Collection coin_turnover(string $label = null) 773 | * @method Grid\Column|Collection coin_allocation_proportion(string $label = null) 774 | * @method Grid\Column|Collection cash_people_counting(string $label = null) 775 | * @method Grid\Column|Collection online_bourse(string $label = null) 776 | * @method Grid\Column|Collection private_cemetery_price(string $label = null) 777 | * @method Grid\Column|Collection block_network_type(string $label = null) 778 | * @method Grid\Column|Collection currency_issue_date(string $label = null) 779 | * @method Grid\Column|Collection blockchain_browser(string $label = null) 780 | * @method Grid\Column|Collection official_wallet_address(string $label = null) 781 | * @method Grid\Column|Collection contract_address(string $label = null) 782 | * @method Grid\Column|Collection twitter_link(string $label = null) 783 | * @method Grid\Column|Collection telegram_link(string $label = null) 784 | * @method Grid\Column|Collection facebook_link(string $label = null) 785 | * @method Grid\Column|Collection market_currency_quantity(string $label = null) 786 | * @method Grid\Column|Collection currency_chinese_introduction(string $label = null) 787 | * @method Grid\Column|Collection currency_english_introduction(string $label = null) 788 | * @method Grid\Column|Collection remarks(string $label = null) 789 | * @method Grid\Column|Collection white_paper(string $label = null) 790 | * @method Grid\Column|Collection application_time(string $label = null) 791 | * @method Grid\Column|Collection remark(string $label = null) 792 | * @method Grid\Column|Collection n_id(string $label = null) 793 | * @method Grid\Column|Collection notifiable_type(string $label = null) 794 | * @method Grid\Column|Collection notifiable_id(string $label = null) 795 | * @method Grid\Column|Collection data(string $label = null) 796 | * @method Grid\Column|Collection read_at(string $label = null) 797 | * @method Grid\Column|Collection max_amount(string $label = null) 798 | * @method Grid\Column|Collection is_bet(string $label = null) 799 | * @method Grid\Column|Collection up_odds(string $label = null) 800 | * @method Grid\Column|Collection down_odds(string $label = null) 801 | * @method Grid\Column|Collection draw_odds(string $label = null) 802 | * @method Grid\Column|Collection bet_coin_id(string $label = null) 803 | * @method Grid\Column|Collection odds_uuid(string $label = null) 804 | * @method Grid\Column|Collection open(string $label = null) 805 | * @method Grid\Column|Collection close(string $label = null) 806 | * @method Grid\Column|Collection high(string $label = null) 807 | * @method Grid\Column|Collection low(string $label = null) 808 | * @method Grid\Column|Collection vol(string $label = null) 809 | * @method Grid\Column|Collection price(string $label = null) 810 | * @method Grid\Column|Collection count(string $label = null) 811 | * @method Grid\Column|Collection time(string $label = null) 812 | * @method Grid\Column|Collection open_time(string $label = null) 813 | * @method Grid\Column|Collection country_id(string $label = null) 814 | * @method Grid\Column|Collection birthday(string $label = null) 815 | * @method Grid\Column|Collection city(string $label = null) 816 | * @method Grid\Column|Collection postal_code(string $label = null) 817 | * @method Grid\Column|Collection extra(string $label = null) 818 | * @method Grid\Column|Collection grade_name_en(string $label = null) 819 | * @method Grid\Column|Collection grade_name_tw(string $label = null) 820 | * @method Grid\Column|Collection login_time(string $label = null) 821 | * @method Grid\Column|Collection login_ip(string $label = null) 822 | * @method Grid\Column|Collection login_site(string $label = null) 823 | * @method Grid\Column|Collection login_type(string $label = null) 824 | * @method Grid\Column|Collection describe(string $label = null) 825 | * @method Grid\Column|Collection image(string $label = null) 826 | * @method Grid\Column|Collection limit_amount(string $label = null) 827 | * @method Grid\Column|Collection max_register_time(string $label = null) 828 | * @method Grid\Column|Collection max_register_num(string $label = null) 829 | * @method Grid\Column|Collection min_num(string $label = null) 830 | * @method Grid\Column|Collection max_num(string $label = null) 831 | * @method Grid\Column|Collection price_usd(string $label = null) 832 | * @method Grid\Column|Collection card_enable(string $label = null) 833 | * @method Grid\Column|Collection wechat_enable(string $label = null) 834 | * @method Grid\Column|Collection alipay_enable(string $label = null) 835 | * @method Grid\Column|Collection order_count(string $label = null) 836 | * @method Grid\Column|Collection deal_count(string $label = null) 837 | * @method Grid\Column|Collection deal_rate(string $label = null) 838 | * @method Grid\Column|Collection deal_amount(string $label = null) 839 | * @method Grid\Column|Collection video(string $label = null) 840 | * @method Grid\Column|Collection coin_symbol(string $label = null) 841 | * @method Grid\Column|Collection update_time(string $label = null) 842 | * @method Grid\Column|Collection seller_uid(string $label = null) 843 | * @method Grid\Column|Collection buyer_uid(string $label = null) 844 | * @method Grid\Column|Collection other_uid(string $label = null) 845 | * @method Grid\Column|Collection total_price_usd(string $label = null) 846 | * @method Grid\Column|Collection total_price_cny(string $label = null) 847 | * @method Grid\Column|Collection order_time(string $label = null) 848 | * @method Grid\Column|Collection pay_time(string $label = null) 849 | * @method Grid\Column|Collection deal_time(string $label = null) 850 | * @method Grid\Column|Collection pay_type(string $label = null) 851 | * @method Grid\Column|Collection bank_name(string $label = null) 852 | * @method Grid\Column|Collection real_name(string $label = null) 853 | * @method Grid\Column|Collection card_no(string $label = null) 854 | * @method Grid\Column|Collection open_bank(string $label = null) 855 | * @method Grid\Column|Collection code_img(string $label = null) 856 | * @method Grid\Column|Collection txid(string $label = null) 857 | * @method Grid\Column|Collection confirmations(string $label = null) 858 | * @method Grid\Column|Collection amount_u(string $label = null) 859 | * @method Grid\Column|Collection opt_type(string $label = null) 860 | * @method Grid\Column|Collection en_project_details(string $label = null) 861 | * @method Grid\Column|Collection payment_amount(string $label = null) 862 | * @method Grid\Column|Collection payment_currency(string $label = null) 863 | * @method Grid\Column|Collection subscription_time(string $label = null) 864 | * @method Grid\Column|Collection subscription_currency_name(string $label = null) 865 | * @method Grid\Column|Collection subscription_currency_amount(string $label = null) 866 | * @method Grid\Column|Collection en_direction_out(string $label = null) 867 | * @method Grid\Column|Collection en_direction_in(string $label = null) 868 | * @method Grid\Column|Collection tw_direction_out(string $label = null) 869 | * @method Grid\Column|Collection tw_direction_in(string $label = null) 870 | * @method Grid\Column|Collection user_old_grade(string $label = null) 871 | * @method Grid\Column|Collection user_new_grade(string $label = null) 872 | * @method Grid\Column|Collection wallet_id(string $label = null) 873 | * @method Grid\Column|Collection omni_wallet_address(string $label = null) 874 | * @method Grid\Column|Collection s_user_id(string $label = null) 875 | * @method Grid\Column|Collection logable_id(string $label = null) 876 | * @method Grid\Column|Collection logable_type(string $label = null) 877 | * @method Grid\Column|Collection address_note(string $label = null) 878 | * @method Grid\Column|Collection address_type(string $label = null) 879 | * @method Grid\Column|Collection total_amount(string $label = null) 880 | * @method Grid\Column|Collection referrer(string $label = null) 881 | * @method Grid\Column|Collection phone_status(string $label = null) 882 | * @method Grid\Column|Collection email_status(string $label = null) 883 | * @method Grid\Column|Collection google_token(string $label = null) 884 | * @method Grid\Column|Collection google_status(string $label = null) 885 | * @method Grid\Column|Collection second_verify(string $label = null) 886 | * @method Grid\Column|Collection is_agency(string $label = null) 887 | * @method Grid\Column|Collection is_system(string $label = null) 888 | * @method Grid\Column|Collection trade_verify(string $label = null) 889 | * @method Grid\Column|Collection from(string $label = null) 890 | * @method Grid\Column|Collection to(string $label = null) 891 | */ 892 | class Grid {} 893 | 894 | class MiniGrid extends Grid {} 895 | 896 | /** 897 | * @property Show\Field|Collection name 898 | * @property Show\Field|Collection version 899 | * @property Show\Field|Collection alias 900 | * @property Show\Field|Collection authors 901 | * @property Show\Field|Collection enable 902 | * @property Show\Field|Collection imported 903 | * @property Show\Field|Collection config 904 | * @property Show\Field|Collection require 905 | * @property Show\Field|Collection require_dev 906 | * @property Show\Field|Collection user_id 907 | * @property Show\Field|Collection account 908 | * @property Show\Field|Collection username 909 | * @property Show\Field|Collection pid 910 | * @property Show\Field|Collection country_code 911 | * @property Show\Field|Collection phone 912 | * @property Show\Field|Collection email 913 | * @property Show\Field|Collection avatar 914 | * @property Show\Field|Collection invite_code 915 | * @property Show\Field|Collection user_grade 916 | * @property Show\Field|Collection user_auth_level 917 | * @property Show\Field|Collection status 918 | * @property Show\Field|Collection trade_status 919 | * @property Show\Field|Collection last_login_time 920 | * @property Show\Field|Collection last_login_ip 921 | * @property Show\Field|Collection created_at 922 | * @property Show\Field|Collection account_type 923 | * @property Show\Field|Collection deep 924 | * @property Show\Field|Collection path 925 | * @property Show\Field|Collection password 926 | * @property Show\Field|Collection payword 927 | * @property Show\Field|Collection user_identity 928 | * @property Show\Field|Collection login_code 929 | * @property Show\Field|Collection reg_ip 930 | * @property Show\Field|Collection updated_at 931 | * @property Show\Field|Collection id 932 | * @property Show\Field|Collection realname 933 | * @property Show\Field|Collection id_card 934 | * @property Show\Field|Collection front_img 935 | * @property Show\Field|Collection back_img 936 | * @property Show\Field|Collection hand_img 937 | * @property Show\Field|Collection check_time 938 | * @property Show\Field|Collection primary_status 939 | * @property Show\Field|Collection coin_name 940 | * @property Show\Field|Collection usable_balance 941 | * @property Show\Field|Collection freeze_balance 942 | * @property Show\Field|Collection address 943 | * @property Show\Field|Collection log_type 944 | * @property Show\Field|Collection rich_type 945 | * @property Show\Field|Collection amount 946 | * @property Show\Field|Collection log_note 947 | * @property Show\Field|Collection before_balance 948 | * @property Show\Field|Collection after_balance 949 | * @property Show\Field|Collection draw_out_direction 950 | * @property Show\Field|Collection into_direction 951 | * @property Show\Field|Collection grade_id 952 | * @property Show\Field|Collection grade_name 953 | * @property Show\Field|Collection grade_img 954 | * @property Show\Field|Collection ug_self_vol 955 | * @property Show\Field|Collection ug_recommend_grade 956 | * @property Show\Field|Collection ug_recommend_num 957 | * @property Show\Field|Collection ug_total_vol 958 | * @property Show\Field|Collection ug_direct_vol 959 | * @property Show\Field|Collection ug_direct_vol_num 960 | * @property Show\Field|Collection ug_direct_recharge 961 | * @property Show\Field|Collection ug_direct_recharge_num 962 | * @property Show\Field|Collection bonus 963 | * @property Show\Field|Collection names 964 | * @property Show\Field|Collection order 965 | * @property Show\Field|Collection cover 966 | * @property Show\Field|Collection body 967 | * @property Show\Field|Collection category_id 968 | * @property Show\Field|Collection view_count 969 | * @property Show\Field|Collection is_recommend 970 | * @property Show\Field|Collection admin_user_id 971 | * @property Show\Field|Collection imgurl 972 | * @property Show\Field|Collection location_type 973 | * @property Show\Field|Collection tourl 974 | * @property Show\Field|Collection tourl_type 975 | * @property Show\Field|Collection pair_id 976 | * @property Show\Field|Collection pair_name 977 | * @property Show\Field|Collection base_coin_name 978 | * @property Show\Field|Collection time_id 979 | * @property Show\Field|Collection time_name 980 | * @property Show\Field|Collection seconds 981 | * @property Show\Field|Collection fee_rate 982 | * @property Show\Field|Collection odds_up_range 983 | * @property Show\Field|Collection odds_down_range 984 | * @property Show\Field|Collection odds_draw_range 985 | * @property Show\Field|Collection contact_phone 986 | * @property Show\Field|Collection contact_position 987 | * @property Show\Field|Collection listing_fee_budget 988 | * @property Show\Field|Collection referrer_mechanism_code 989 | * @property Show\Field|Collection issue_price 990 | * @property Show\Field|Collection subscribe_currency 991 | * @property Show\Field|Collection expected_time_online 992 | * @property Show\Field|Collection start_subscription_time 993 | * @property Show\Field|Collection end_subscription_time 994 | * @property Show\Field|Collection announce_time 995 | * @property Show\Field|Collection minimum_purchase 996 | * @property Show\Field|Collection maximum_purchase 997 | * @property Show\Field|Collection project_details 998 | * @property Show\Field|Collection coin_id 999 | * @property Show\Field|Collection collection_wallet 1000 | * @property Show\Field|Collection type 1001 | * @property Show\Field|Collection note 1002 | * @property Show\Field|Collection datetime 1003 | * @property Show\Field|Collection wallet_address 1004 | * @property Show\Field|Collection wallet_address_image 1005 | * @property Show\Field|Collection payment_method 1006 | * @property Show\Field|Collection receiving_account 1007 | * @property Show\Field|Collection payment_image 1008 | * @property Show\Field|Collection agent_level 1009 | * @property Show\Field|Collection agent_name 1010 | * @property Show\Field|Collection order_id 1011 | * @property Show\Field|Collection bet_amount 1012 | * @property Show\Field|Collection bet_coin_name 1013 | * @property Show\Field|Collection odds 1014 | * @property Show\Field|Collection range 1015 | * @property Show\Field|Collection fee 1016 | * @property Show\Field|Collection delivery_amount 1017 | * @property Show\Field|Collection delivery_time 1018 | * @property Show\Field|Collection order_no 1019 | * @property Show\Field|Collection up_down 1020 | * @property Show\Field|Collection scene_id 1021 | * @property Show\Field|Collection scene_sn 1022 | * @property Show\Field|Collection pair_time_name 1023 | * @property Show\Field|Collection begin_time 1024 | * @property Show\Field|Collection end_time 1025 | * @property Show\Field|Collection begin_price 1026 | * @property Show\Field|Collection end_price 1027 | * @property Show\Field|Collection delivery_up_down 1028 | * @property Show\Field|Collection delivery_range 1029 | * @property Show\Field|Collection process_note 1030 | * @property Show\Field|Collection process_time 1031 | * @property Show\Field|Collection contents 1032 | * @property Show\Field|Collection is_process 1033 | * @property Show\Field|Collection key 1034 | * @property Show\Field|Collection value 1035 | * @property Show\Field|Collection full_name 1036 | * @property Show\Field|Collection qty_decimals 1037 | * @property Show\Field|Collection price_decimals 1038 | * @property Show\Field|Collection withdrawal_fee 1039 | * @property Show\Field|Collection withdrawal_min 1040 | * @property Show\Field|Collection withdrawal_max 1041 | * @property Show\Field|Collection coin_withdraw_message 1042 | * @property Show\Field|Collection coin_recharge_message 1043 | * @property Show\Field|Collection coin_transfer_message 1044 | * @property Show\Field|Collection coin_content 1045 | * @property Show\Field|Collection coin_icon 1046 | * @property Show\Field|Collection symbol 1047 | * @property Show\Field|Collection quote_coin_id 1048 | * @property Show\Field|Collection quote_coin_name 1049 | * @property Show\Field|Collection base_coin_id 1050 | * @property Show\Field|Collection min_qty 1051 | * @property Show\Field|Collection min_total 1052 | * @property Show\Field|Collection sort 1053 | * @property Show\Field|Collection entrust_price 1054 | * @property Show\Field|Collection trigger_price 1055 | * @property Show\Field|Collection traded_amount 1056 | * @property Show\Field|Collection money 1057 | * @property Show\Field|Collection traded_money 1058 | * @property Show\Field|Collection cancel_time 1059 | * @property Show\Field|Collection hang_status 1060 | * @property Show\Field|Collection buy_order_no 1061 | * @property Show\Field|Collection sell_order_no 1062 | * @property Show\Field|Collection unit_price 1063 | * @property Show\Field|Collection trade_amount 1064 | * @property Show\Field|Collection trade_money 1065 | * @property Show\Field|Collection trade_buy_fee 1066 | * @property Show\Field|Collection trade_sell_fee 1067 | * @property Show\Field|Collection buy_user_id 1068 | * @property Show\Field|Collection sell_user_id 1069 | * @property Show\Field|Collection lang 1070 | * @property Show\Field|Collection json_content 1071 | * @property Show\Field|Collection file 1072 | * @property Show\Field|Collection url 1073 | * @property Show\Field|Collection img 1074 | * @property Show\Field|Collection link_type 1075 | * @property Show\Field|Collection link_data 1076 | * @property Show\Field|Collection desc 1077 | * @property Show\Field|Collection parent_id 1078 | * @property Show\Field|Collection icon 1079 | * @property Show\Field|Collection uri 1080 | * @property Show\Field|Collection method 1081 | * @property Show\Field|Collection ip 1082 | * @property Show\Field|Collection input 1083 | * @property Show\Field|Collection permission_id 1084 | * @property Show\Field|Collection menu_id 1085 | * @property Show\Field|Collection slug 1086 | * @property Show\Field|Collection http_method 1087 | * @property Show\Field|Collection http_path 1088 | * @property Show\Field|Collection role_id 1089 | * @property Show\Field|Collection module 1090 | * @property Show\Field|Collection tips 1091 | * @property Show\Field|Collection remember_token 1092 | * @property Show\Field|Collection locale 1093 | * @property Show\Field|Collection imgs 1094 | * @property Show\Field|Collection client_type 1095 | * @property Show\Field|Collection is_must 1096 | * @property Show\Field|Collection update_log 1097 | * @property Show\Field|Collection deleted_at 1098 | * @property Show\Field|Collection article_id 1099 | * @property Show\Field|Collection excerpt 1100 | * @property Show\Field|Collection b_id 1101 | * @property Show\Field|Collection nation_name 1102 | * @property Show\Field|Collection hand_time 1103 | * @property Show\Field|Collection bonusable_id 1104 | * @property Show\Field|Collection bonusable_type 1105 | * @property Show\Field|Collection center_wallet_id 1106 | * @property Show\Field|Collection center_wallet_name 1107 | * @property Show\Field|Collection center_wallet_account 1108 | * @property Show\Field|Collection center_wallet_address 1109 | * @property Show\Field|Collection center_wallet_password 1110 | * @property Show\Field|Collection center_wallet_balance 1111 | * @property Show\Field|Collection min_amount 1112 | * @property Show\Field|Collection appKey 1113 | * @property Show\Field|Collection appSecret 1114 | * @property Show\Field|Collection official_website_link 1115 | * @property Show\Field|Collection white_paper_link 1116 | * @property Show\Field|Collection block_query_link 1117 | * @property Show\Field|Collection publish_time 1118 | * @property Show\Field|Collection total_issuance 1119 | * @property Show\Field|Collection total_circulation 1120 | * @property Show\Field|Collection crowdfunding_price 1121 | * @property Show\Field|Collection is_withdraw 1122 | * @property Show\Field|Collection is_recharge 1123 | * @property Show\Field|Collection can_recharge 1124 | * @property Show\Field|Collection contract_id 1125 | * @property Show\Field|Collection margin_name 1126 | * @property Show\Field|Collection used_balance 1127 | * @property Show\Field|Collection bid_plus_unit 1128 | * @property Show\Field|Collection bid_plus_count 1129 | * @property Show\Field|Collection bid_minus_unit 1130 | * @property Show\Field|Collection bid_minus_count 1131 | * @property Show\Field|Collection ask_plus_unit 1132 | * @property Show\Field|Collection ask_plus_count 1133 | * @property Show\Field|Collection ask_minus_unit 1134 | * @property Show\Field|Collection ask_minus_count 1135 | * @property Show\Field|Collection order_type 1136 | * @property Show\Field|Collection side 1137 | * @property Show\Field|Collection contract_coin_id 1138 | * @property Show\Field|Collection lever_rate 1139 | * @property Show\Field|Collection margin 1140 | * @property Show\Field|Collection ts 1141 | * @property Show\Field|Collection buy_id 1142 | * @property Show\Field|Collection sell_id 1143 | * @property Show\Field|Collection contract_coin_name 1144 | * @property Show\Field|Collection unit_amount 1145 | * @property Show\Field|Collection maker_fee_rate 1146 | * @property Show\Field|Collection taker_fee_rate 1147 | * @property Show\Field|Collection lever_rage 1148 | * @property Show\Field|Collection max_qty 1149 | * @property Show\Field|Collection total_max_qty 1150 | * @property Show\Field|Collection margin_mode 1151 | * @property Show\Field|Collection liquidation_price 1152 | * @property Show\Field|Collection hold_position 1153 | * @property Show\Field|Collection avail_position 1154 | * @property Show\Field|Collection freeze_position 1155 | * @property Show\Field|Collection position_margin 1156 | * @property Show\Field|Collection avg_price 1157 | * @property Show\Field|Collection settlement_price 1158 | * @property Show\Field|Collection maintain_margin_rate 1159 | * @property Show\Field|Collection settled_pnl 1160 | * @property Show\Field|Collection realized_pnl 1161 | * @property Show\Field|Collection unrealized_pnl 1162 | * @property Show\Field|Collection code 1163 | * @property Show\Field|Collection en_name 1164 | * @property Show\Field|Collection Symbol 1165 | * @property Show\Field|Collection Date 1166 | * @property Show\Field|Collection Name 1167 | * @property Show\Field|Collection Open 1168 | * @property Show\Field|Collection High 1169 | * @property Show\Field|Collection Low 1170 | * @property Show\Field|Collection Close 1171 | * @property Show\Field|Collection LastClose 1172 | * @property Show\Field|Collection Price2 1173 | * @property Show\Field|Collection Price3 1174 | * @property Show\Field|Collection Open_Int 1175 | * @property Show\Field|Collection Volume 1176 | * @property Show\Field|Collection Amount 1177 | * @property Show\Field|Collection is_1min 1178 | * @property Show\Field|Collection is_5min 1179 | * @property Show\Field|Collection is_15min 1180 | * @property Show\Field|Collection is_30min 1181 | * @property Show\Field|Collection is_1h 1182 | * @property Show\Field|Collection is_2h 1183 | * @property Show\Field|Collection is_4h 1184 | * @property Show\Field|Collection is_6h 1185 | * @property Show\Field|Collection is_12h 1186 | * @property Show\Field|Collection is_day 1187 | * @property Show\Field|Collection is_week 1188 | * @property Show\Field|Collection is_month 1189 | * @property Show\Field|Collection connection 1190 | * @property Show\Field|Collection queue 1191 | * @property Show\Field|Collection payload 1192 | * @property Show\Field|Collection exception 1193 | * @property Show\Field|Collection failed_at 1194 | * @property Show\Field|Collection entrust_type 1195 | * @property Show\Field|Collection trigger_price_buy_rate 1196 | * @property Show\Field|Collection trigger_price_sell_rate 1197 | * @property Show\Field|Collection is_market 1198 | * @property Show\Field|Collection up_or_down 1199 | * @property Show\Field|Collection start_time 1200 | * @property Show\Field|Collection order_amount 1201 | * @property Show\Field|Collection bid_place_threshold 1202 | * @property Show\Field|Collection ask_place_threshold 1203 | * @property Show\Field|Collection attempts 1204 | * @property Show\Field|Collection reserved_at 1205 | * @property Show\Field|Collection available_at 1206 | * @property Show\Field|Collection coin_chinese_name 1207 | * @property Show\Field|Collection coin_market_price 1208 | * @property Show\Field|Collection contact_email 1209 | * @property Show\Field|Collection cotes_const 1210 | * @property Show\Field|Collection agency_personnel 1211 | * @property Show\Field|Collection currency_code 1212 | * @property Show\Field|Collection currency_identification 1213 | * @property Show\Field|Collection placement 1214 | * @property Show\Field|Collection official_website 1215 | * @property Show\Field|Collection currency_circulation 1216 | * @property Show\Field|Collection coin_turnover 1217 | * @property Show\Field|Collection coin_allocation_proportion 1218 | * @property Show\Field|Collection cash_people_counting 1219 | * @property Show\Field|Collection online_bourse 1220 | * @property Show\Field|Collection private_cemetery_price 1221 | * @property Show\Field|Collection block_network_type 1222 | * @property Show\Field|Collection currency_issue_date 1223 | * @property Show\Field|Collection blockchain_browser 1224 | * @property Show\Field|Collection official_wallet_address 1225 | * @property Show\Field|Collection contract_address 1226 | * @property Show\Field|Collection twitter_link 1227 | * @property Show\Field|Collection telegram_link 1228 | * @property Show\Field|Collection facebook_link 1229 | * @property Show\Field|Collection market_currency_quantity 1230 | * @property Show\Field|Collection currency_chinese_introduction 1231 | * @property Show\Field|Collection currency_english_introduction 1232 | * @property Show\Field|Collection remarks 1233 | * @property Show\Field|Collection white_paper 1234 | * @property Show\Field|Collection application_time 1235 | * @property Show\Field|Collection remark 1236 | * @property Show\Field|Collection n_id 1237 | * @property Show\Field|Collection notifiable_type 1238 | * @property Show\Field|Collection notifiable_id 1239 | * @property Show\Field|Collection data 1240 | * @property Show\Field|Collection read_at 1241 | * @property Show\Field|Collection max_amount 1242 | * @property Show\Field|Collection is_bet 1243 | * @property Show\Field|Collection up_odds 1244 | * @property Show\Field|Collection down_odds 1245 | * @property Show\Field|Collection draw_odds 1246 | * @property Show\Field|Collection bet_coin_id 1247 | * @property Show\Field|Collection odds_uuid 1248 | * @property Show\Field|Collection open 1249 | * @property Show\Field|Collection close 1250 | * @property Show\Field|Collection high 1251 | * @property Show\Field|Collection low 1252 | * @property Show\Field|Collection vol 1253 | * @property Show\Field|Collection price 1254 | * @property Show\Field|Collection count 1255 | * @property Show\Field|Collection time 1256 | * @property Show\Field|Collection open_time 1257 | * @property Show\Field|Collection country_id 1258 | * @property Show\Field|Collection birthday 1259 | * @property Show\Field|Collection city 1260 | * @property Show\Field|Collection postal_code 1261 | * @property Show\Field|Collection extra 1262 | * @property Show\Field|Collection grade_name_en 1263 | * @property Show\Field|Collection grade_name_tw 1264 | * @property Show\Field|Collection login_time 1265 | * @property Show\Field|Collection login_ip 1266 | * @property Show\Field|Collection login_site 1267 | * @property Show\Field|Collection login_type 1268 | * @property Show\Field|Collection describe 1269 | * @property Show\Field|Collection image 1270 | * @property Show\Field|Collection limit_amount 1271 | * @property Show\Field|Collection max_register_time 1272 | * @property Show\Field|Collection max_register_num 1273 | * @property Show\Field|Collection min_num 1274 | * @property Show\Field|Collection max_num 1275 | * @property Show\Field|Collection price_usd 1276 | * @property Show\Field|Collection card_enable 1277 | * @property Show\Field|Collection wechat_enable 1278 | * @property Show\Field|Collection alipay_enable 1279 | * @property Show\Field|Collection order_count 1280 | * @property Show\Field|Collection deal_count 1281 | * @property Show\Field|Collection deal_rate 1282 | * @property Show\Field|Collection deal_amount 1283 | * @property Show\Field|Collection video 1284 | * @property Show\Field|Collection coin_symbol 1285 | * @property Show\Field|Collection update_time 1286 | * @property Show\Field|Collection seller_uid 1287 | * @property Show\Field|Collection buyer_uid 1288 | * @property Show\Field|Collection other_uid 1289 | * @property Show\Field|Collection total_price_usd 1290 | * @property Show\Field|Collection total_price_cny 1291 | * @property Show\Field|Collection order_time 1292 | * @property Show\Field|Collection pay_time 1293 | * @property Show\Field|Collection deal_time 1294 | * @property Show\Field|Collection pay_type 1295 | * @property Show\Field|Collection bank_name 1296 | * @property Show\Field|Collection real_name 1297 | * @property Show\Field|Collection card_no 1298 | * @property Show\Field|Collection open_bank 1299 | * @property Show\Field|Collection code_img 1300 | * @property Show\Field|Collection txid 1301 | * @property Show\Field|Collection confirmations 1302 | * @property Show\Field|Collection amount_u 1303 | * @property Show\Field|Collection opt_type 1304 | * @property Show\Field|Collection en_project_details 1305 | * @property Show\Field|Collection payment_amount 1306 | * @property Show\Field|Collection payment_currency 1307 | * @property Show\Field|Collection subscription_time 1308 | * @property Show\Field|Collection subscription_currency_name 1309 | * @property Show\Field|Collection subscription_currency_amount 1310 | * @property Show\Field|Collection en_direction_out 1311 | * @property Show\Field|Collection en_direction_in 1312 | * @property Show\Field|Collection tw_direction_out 1313 | * @property Show\Field|Collection tw_direction_in 1314 | * @property Show\Field|Collection user_old_grade 1315 | * @property Show\Field|Collection user_new_grade 1316 | * @property Show\Field|Collection wallet_id 1317 | * @property Show\Field|Collection omni_wallet_address 1318 | * @property Show\Field|Collection s_user_id 1319 | * @property Show\Field|Collection logable_id 1320 | * @property Show\Field|Collection logable_type 1321 | * @property Show\Field|Collection address_note 1322 | * @property Show\Field|Collection address_type 1323 | * @property Show\Field|Collection total_amount 1324 | * @property Show\Field|Collection referrer 1325 | * @property Show\Field|Collection phone_status 1326 | * @property Show\Field|Collection email_status 1327 | * @property Show\Field|Collection google_token 1328 | * @property Show\Field|Collection google_status 1329 | * @property Show\Field|Collection second_verify 1330 | * @property Show\Field|Collection is_agency 1331 | * @property Show\Field|Collection is_system 1332 | * @property Show\Field|Collection trade_verify 1333 | * @property Show\Field|Collection from 1334 | * @property Show\Field|Collection to 1335 | * 1336 | * @method Show\Field|Collection name(string $label = null) 1337 | * @method Show\Field|Collection version(string $label = null) 1338 | * @method Show\Field|Collection alias(string $label = null) 1339 | * @method Show\Field|Collection authors(string $label = null) 1340 | * @method Show\Field|Collection enable(string $label = null) 1341 | * @method Show\Field|Collection imported(string $label = null) 1342 | * @method Show\Field|Collection config(string $label = null) 1343 | * @method Show\Field|Collection require(string $label = null) 1344 | * @method Show\Field|Collection require_dev(string $label = null) 1345 | * @method Show\Field|Collection user_id(string $label = null) 1346 | * @method Show\Field|Collection account(string $label = null) 1347 | * @method Show\Field|Collection username(string $label = null) 1348 | * @method Show\Field|Collection pid(string $label = null) 1349 | * @method Show\Field|Collection country_code(string $label = null) 1350 | * @method Show\Field|Collection phone(string $label = null) 1351 | * @method Show\Field|Collection email(string $label = null) 1352 | * @method Show\Field|Collection avatar(string $label = null) 1353 | * @method Show\Field|Collection invite_code(string $label = null) 1354 | * @method Show\Field|Collection user_grade(string $label = null) 1355 | * @method Show\Field|Collection user_auth_level(string $label = null) 1356 | * @method Show\Field|Collection status(string $label = null) 1357 | * @method Show\Field|Collection trade_status(string $label = null) 1358 | * @method Show\Field|Collection last_login_time(string $label = null) 1359 | * @method Show\Field|Collection last_login_ip(string $label = null) 1360 | * @method Show\Field|Collection created_at(string $label = null) 1361 | * @method Show\Field|Collection account_type(string $label = null) 1362 | * @method Show\Field|Collection deep(string $label = null) 1363 | * @method Show\Field|Collection path(string $label = null) 1364 | * @method Show\Field|Collection password(string $label = null) 1365 | * @method Show\Field|Collection payword(string $label = null) 1366 | * @method Show\Field|Collection user_identity(string $label = null) 1367 | * @method Show\Field|Collection login_code(string $label = null) 1368 | * @method Show\Field|Collection reg_ip(string $label = null) 1369 | * @method Show\Field|Collection updated_at(string $label = null) 1370 | * @method Show\Field|Collection id(string $label = null) 1371 | * @method Show\Field|Collection realname(string $label = null) 1372 | * @method Show\Field|Collection id_card(string $label = null) 1373 | * @method Show\Field|Collection front_img(string $label = null) 1374 | * @method Show\Field|Collection back_img(string $label = null) 1375 | * @method Show\Field|Collection hand_img(string $label = null) 1376 | * @method Show\Field|Collection check_time(string $label = null) 1377 | * @method Show\Field|Collection primary_status(string $label = null) 1378 | * @method Show\Field|Collection coin_name(string $label = null) 1379 | * @method Show\Field|Collection usable_balance(string $label = null) 1380 | * @method Show\Field|Collection freeze_balance(string $label = null) 1381 | * @method Show\Field|Collection address(string $label = null) 1382 | * @method Show\Field|Collection log_type(string $label = null) 1383 | * @method Show\Field|Collection rich_type(string $label = null) 1384 | * @method Show\Field|Collection amount(string $label = null) 1385 | * @method Show\Field|Collection log_note(string $label = null) 1386 | * @method Show\Field|Collection before_balance(string $label = null) 1387 | * @method Show\Field|Collection after_balance(string $label = null) 1388 | * @method Show\Field|Collection draw_out_direction(string $label = null) 1389 | * @method Show\Field|Collection into_direction(string $label = null) 1390 | * @method Show\Field|Collection grade_id(string $label = null) 1391 | * @method Show\Field|Collection grade_name(string $label = null) 1392 | * @method Show\Field|Collection grade_img(string $label = null) 1393 | * @method Show\Field|Collection ug_self_vol(string $label = null) 1394 | * @method Show\Field|Collection ug_recommend_grade(string $label = null) 1395 | * @method Show\Field|Collection ug_recommend_num(string $label = null) 1396 | * @method Show\Field|Collection ug_total_vol(string $label = null) 1397 | * @method Show\Field|Collection ug_direct_vol(string $label = null) 1398 | * @method Show\Field|Collection ug_direct_vol_num(string $label = null) 1399 | * @method Show\Field|Collection ug_direct_recharge(string $label = null) 1400 | * @method Show\Field|Collection ug_direct_recharge_num(string $label = null) 1401 | * @method Show\Field|Collection bonus(string $label = null) 1402 | * @method Show\Field|Collection names(string $label = null) 1403 | * @method Show\Field|Collection order(string $label = null) 1404 | * @method Show\Field|Collection cover(string $label = null) 1405 | * @method Show\Field|Collection body(string $label = null) 1406 | * @method Show\Field|Collection category_id(string $label = null) 1407 | * @method Show\Field|Collection view_count(string $label = null) 1408 | * @method Show\Field|Collection is_recommend(string $label = null) 1409 | * @method Show\Field|Collection admin_user_id(string $label = null) 1410 | * @method Show\Field|Collection imgurl(string $label = null) 1411 | * @method Show\Field|Collection location_type(string $label = null) 1412 | * @method Show\Field|Collection tourl(string $label = null) 1413 | * @method Show\Field|Collection tourl_type(string $label = null) 1414 | * @method Show\Field|Collection pair_id(string $label = null) 1415 | * @method Show\Field|Collection pair_name(string $label = null) 1416 | * @method Show\Field|Collection base_coin_name(string $label = null) 1417 | * @method Show\Field|Collection time_id(string $label = null) 1418 | * @method Show\Field|Collection time_name(string $label = null) 1419 | * @method Show\Field|Collection seconds(string $label = null) 1420 | * @method Show\Field|Collection fee_rate(string $label = null) 1421 | * @method Show\Field|Collection odds_up_range(string $label = null) 1422 | * @method Show\Field|Collection odds_down_range(string $label = null) 1423 | * @method Show\Field|Collection odds_draw_range(string $label = null) 1424 | * @method Show\Field|Collection contact_phone(string $label = null) 1425 | * @method Show\Field|Collection contact_position(string $label = null) 1426 | * @method Show\Field|Collection listing_fee_budget(string $label = null) 1427 | * @method Show\Field|Collection referrer_mechanism_code(string $label = null) 1428 | * @method Show\Field|Collection issue_price(string $label = null) 1429 | * @method Show\Field|Collection subscribe_currency(string $label = null) 1430 | * @method Show\Field|Collection expected_time_online(string $label = null) 1431 | * @method Show\Field|Collection start_subscription_time(string $label = null) 1432 | * @method Show\Field|Collection end_subscription_time(string $label = null) 1433 | * @method Show\Field|Collection announce_time(string $label = null) 1434 | * @method Show\Field|Collection minimum_purchase(string $label = null) 1435 | * @method Show\Field|Collection maximum_purchase(string $label = null) 1436 | * @method Show\Field|Collection project_details(string $label = null) 1437 | * @method Show\Field|Collection coin_id(string $label = null) 1438 | * @method Show\Field|Collection collection_wallet(string $label = null) 1439 | * @method Show\Field|Collection type(string $label = null) 1440 | * @method Show\Field|Collection note(string $label = null) 1441 | * @method Show\Field|Collection datetime(string $label = null) 1442 | * @method Show\Field|Collection wallet_address(string $label = null) 1443 | * @method Show\Field|Collection wallet_address_image(string $label = null) 1444 | * @method Show\Field|Collection payment_method(string $label = null) 1445 | * @method Show\Field|Collection receiving_account(string $label = null) 1446 | * @method Show\Field|Collection payment_image(string $label = null) 1447 | * @method Show\Field|Collection agent_level(string $label = null) 1448 | * @method Show\Field|Collection agent_name(string $label = null) 1449 | * @method Show\Field|Collection order_id(string $label = null) 1450 | * @method Show\Field|Collection bet_amount(string $label = null) 1451 | * @method Show\Field|Collection bet_coin_name(string $label = null) 1452 | * @method Show\Field|Collection odds(string $label = null) 1453 | * @method Show\Field|Collection range(string $label = null) 1454 | * @method Show\Field|Collection fee(string $label = null) 1455 | * @method Show\Field|Collection delivery_amount(string $label = null) 1456 | * @method Show\Field|Collection delivery_time(string $label = null) 1457 | * @method Show\Field|Collection order_no(string $label = null) 1458 | * @method Show\Field|Collection up_down(string $label = null) 1459 | * @method Show\Field|Collection scene_id(string $label = null) 1460 | * @method Show\Field|Collection scene_sn(string $label = null) 1461 | * @method Show\Field|Collection pair_time_name(string $label = null) 1462 | * @method Show\Field|Collection begin_time(string $label = null) 1463 | * @method Show\Field|Collection end_time(string $label = null) 1464 | * @method Show\Field|Collection begin_price(string $label = null) 1465 | * @method Show\Field|Collection end_price(string $label = null) 1466 | * @method Show\Field|Collection delivery_up_down(string $label = null) 1467 | * @method Show\Field|Collection delivery_range(string $label = null) 1468 | * @method Show\Field|Collection process_note(string $label = null) 1469 | * @method Show\Field|Collection process_time(string $label = null) 1470 | * @method Show\Field|Collection contents(string $label = null) 1471 | * @method Show\Field|Collection is_process(string $label = null) 1472 | * @method Show\Field|Collection key(string $label = null) 1473 | * @method Show\Field|Collection value(string $label = null) 1474 | * @method Show\Field|Collection full_name(string $label = null) 1475 | * @method Show\Field|Collection qty_decimals(string $label = null) 1476 | * @method Show\Field|Collection price_decimals(string $label = null) 1477 | * @method Show\Field|Collection withdrawal_fee(string $label = null) 1478 | * @method Show\Field|Collection withdrawal_min(string $label = null) 1479 | * @method Show\Field|Collection withdrawal_max(string $label = null) 1480 | * @method Show\Field|Collection coin_withdraw_message(string $label = null) 1481 | * @method Show\Field|Collection coin_recharge_message(string $label = null) 1482 | * @method Show\Field|Collection coin_transfer_message(string $label = null) 1483 | * @method Show\Field|Collection coin_content(string $label = null) 1484 | * @method Show\Field|Collection coin_icon(string $label = null) 1485 | * @method Show\Field|Collection symbol(string $label = null) 1486 | * @method Show\Field|Collection quote_coin_id(string $label = null) 1487 | * @method Show\Field|Collection quote_coin_name(string $label = null) 1488 | * @method Show\Field|Collection base_coin_id(string $label = null) 1489 | * @method Show\Field|Collection min_qty(string $label = null) 1490 | * @method Show\Field|Collection min_total(string $label = null) 1491 | * @method Show\Field|Collection sort(string $label = null) 1492 | * @method Show\Field|Collection entrust_price(string $label = null) 1493 | * @method Show\Field|Collection trigger_price(string $label = null) 1494 | * @method Show\Field|Collection traded_amount(string $label = null) 1495 | * @method Show\Field|Collection money(string $label = null) 1496 | * @method Show\Field|Collection traded_money(string $label = null) 1497 | * @method Show\Field|Collection cancel_time(string $label = null) 1498 | * @method Show\Field|Collection hang_status(string $label = null) 1499 | * @method Show\Field|Collection buy_order_no(string $label = null) 1500 | * @method Show\Field|Collection sell_order_no(string $label = null) 1501 | * @method Show\Field|Collection unit_price(string $label = null) 1502 | * @method Show\Field|Collection trade_amount(string $label = null) 1503 | * @method Show\Field|Collection trade_money(string $label = null) 1504 | * @method Show\Field|Collection trade_buy_fee(string $label = null) 1505 | * @method Show\Field|Collection trade_sell_fee(string $label = null) 1506 | * @method Show\Field|Collection buy_user_id(string $label = null) 1507 | * @method Show\Field|Collection sell_user_id(string $label = null) 1508 | * @method Show\Field|Collection lang(string $label = null) 1509 | * @method Show\Field|Collection json_content(string $label = null) 1510 | * @method Show\Field|Collection file(string $label = null) 1511 | * @method Show\Field|Collection url(string $label = null) 1512 | * @method Show\Field|Collection img(string $label = null) 1513 | * @method Show\Field|Collection link_type(string $label = null) 1514 | * @method Show\Field|Collection link_data(string $label = null) 1515 | * @method Show\Field|Collection desc(string $label = null) 1516 | * @method Show\Field|Collection parent_id(string $label = null) 1517 | * @method Show\Field|Collection icon(string $label = null) 1518 | * @method Show\Field|Collection uri(string $label = null) 1519 | * @method Show\Field|Collection method(string $label = null) 1520 | * @method Show\Field|Collection ip(string $label = null) 1521 | * @method Show\Field|Collection input(string $label = null) 1522 | * @method Show\Field|Collection permission_id(string $label = null) 1523 | * @method Show\Field|Collection menu_id(string $label = null) 1524 | * @method Show\Field|Collection slug(string $label = null) 1525 | * @method Show\Field|Collection http_method(string $label = null) 1526 | * @method Show\Field|Collection http_path(string $label = null) 1527 | * @method Show\Field|Collection role_id(string $label = null) 1528 | * @method Show\Field|Collection module(string $label = null) 1529 | * @method Show\Field|Collection tips(string $label = null) 1530 | * @method Show\Field|Collection remember_token(string $label = null) 1531 | * @method Show\Field|Collection locale(string $label = null) 1532 | * @method Show\Field|Collection imgs(string $label = null) 1533 | * @method Show\Field|Collection client_type(string $label = null) 1534 | * @method Show\Field|Collection is_must(string $label = null) 1535 | * @method Show\Field|Collection update_log(string $label = null) 1536 | * @method Show\Field|Collection deleted_at(string $label = null) 1537 | * @method Show\Field|Collection article_id(string $label = null) 1538 | * @method Show\Field|Collection excerpt(string $label = null) 1539 | * @method Show\Field|Collection b_id(string $label = null) 1540 | * @method Show\Field|Collection nation_name(string $label = null) 1541 | * @method Show\Field|Collection hand_time(string $label = null) 1542 | * @method Show\Field|Collection bonusable_id(string $label = null) 1543 | * @method Show\Field|Collection bonusable_type(string $label = null) 1544 | * @method Show\Field|Collection center_wallet_id(string $label = null) 1545 | * @method Show\Field|Collection center_wallet_name(string $label = null) 1546 | * @method Show\Field|Collection center_wallet_account(string $label = null) 1547 | * @method Show\Field|Collection center_wallet_address(string $label = null) 1548 | * @method Show\Field|Collection center_wallet_password(string $label = null) 1549 | * @method Show\Field|Collection center_wallet_balance(string $label = null) 1550 | * @method Show\Field|Collection min_amount(string $label = null) 1551 | * @method Show\Field|Collection appKey(string $label = null) 1552 | * @method Show\Field|Collection appSecret(string $label = null) 1553 | * @method Show\Field|Collection official_website_link(string $label = null) 1554 | * @method Show\Field|Collection white_paper_link(string $label = null) 1555 | * @method Show\Field|Collection block_query_link(string $label = null) 1556 | * @method Show\Field|Collection publish_time(string $label = null) 1557 | * @method Show\Field|Collection total_issuance(string $label = null) 1558 | * @method Show\Field|Collection total_circulation(string $label = null) 1559 | * @method Show\Field|Collection crowdfunding_price(string $label = null) 1560 | * @method Show\Field|Collection is_withdraw(string $label = null) 1561 | * @method Show\Field|Collection is_recharge(string $label = null) 1562 | * @method Show\Field|Collection can_recharge(string $label = null) 1563 | * @method Show\Field|Collection contract_id(string $label = null) 1564 | * @method Show\Field|Collection margin_name(string $label = null) 1565 | * @method Show\Field|Collection used_balance(string $label = null) 1566 | * @method Show\Field|Collection bid_plus_unit(string $label = null) 1567 | * @method Show\Field|Collection bid_plus_count(string $label = null) 1568 | * @method Show\Field|Collection bid_minus_unit(string $label = null) 1569 | * @method Show\Field|Collection bid_minus_count(string $label = null) 1570 | * @method Show\Field|Collection ask_plus_unit(string $label = null) 1571 | * @method Show\Field|Collection ask_plus_count(string $label = null) 1572 | * @method Show\Field|Collection ask_minus_unit(string $label = null) 1573 | * @method Show\Field|Collection ask_minus_count(string $label = null) 1574 | * @method Show\Field|Collection order_type(string $label = null) 1575 | * @method Show\Field|Collection side(string $label = null) 1576 | * @method Show\Field|Collection contract_coin_id(string $label = null) 1577 | * @method Show\Field|Collection lever_rate(string $label = null) 1578 | * @method Show\Field|Collection margin(string $label = null) 1579 | * @method Show\Field|Collection ts(string $label = null) 1580 | * @method Show\Field|Collection buy_id(string $label = null) 1581 | * @method Show\Field|Collection sell_id(string $label = null) 1582 | * @method Show\Field|Collection contract_coin_name(string $label = null) 1583 | * @method Show\Field|Collection unit_amount(string $label = null) 1584 | * @method Show\Field|Collection maker_fee_rate(string $label = null) 1585 | * @method Show\Field|Collection taker_fee_rate(string $label = null) 1586 | * @method Show\Field|Collection lever_rage(string $label = null) 1587 | * @method Show\Field|Collection max_qty(string $label = null) 1588 | * @method Show\Field|Collection total_max_qty(string $label = null) 1589 | * @method Show\Field|Collection margin_mode(string $label = null) 1590 | * @method Show\Field|Collection liquidation_price(string $label = null) 1591 | * @method Show\Field|Collection hold_position(string $label = null) 1592 | * @method Show\Field|Collection avail_position(string $label = null) 1593 | * @method Show\Field|Collection freeze_position(string $label = null) 1594 | * @method Show\Field|Collection position_margin(string $label = null) 1595 | * @method Show\Field|Collection avg_price(string $label = null) 1596 | * @method Show\Field|Collection settlement_price(string $label = null) 1597 | * @method Show\Field|Collection maintain_margin_rate(string $label = null) 1598 | * @method Show\Field|Collection settled_pnl(string $label = null) 1599 | * @method Show\Field|Collection realized_pnl(string $label = null) 1600 | * @method Show\Field|Collection unrealized_pnl(string $label = null) 1601 | * @method Show\Field|Collection code(string $label = null) 1602 | * @method Show\Field|Collection en_name(string $label = null) 1603 | * @method Show\Field|Collection Symbol(string $label = null) 1604 | * @method Show\Field|Collection Date(string $label = null) 1605 | * @method Show\Field|Collection Name(string $label = null) 1606 | * @method Show\Field|Collection Open(string $label = null) 1607 | * @method Show\Field|Collection High(string $label = null) 1608 | * @method Show\Field|Collection Low(string $label = null) 1609 | * @method Show\Field|Collection Close(string $label = null) 1610 | * @method Show\Field|Collection LastClose(string $label = null) 1611 | * @method Show\Field|Collection Price2(string $label = null) 1612 | * @method Show\Field|Collection Price3(string $label = null) 1613 | * @method Show\Field|Collection Open_Int(string $label = null) 1614 | * @method Show\Field|Collection Volume(string $label = null) 1615 | * @method Show\Field|Collection Amount(string $label = null) 1616 | * @method Show\Field|Collection is_1min(string $label = null) 1617 | * @method Show\Field|Collection is_5min(string $label = null) 1618 | * @method Show\Field|Collection is_15min(string $label = null) 1619 | * @method Show\Field|Collection is_30min(string $label = null) 1620 | * @method Show\Field|Collection is_1h(string $label = null) 1621 | * @method Show\Field|Collection is_2h(string $label = null) 1622 | * @method Show\Field|Collection is_4h(string $label = null) 1623 | * @method Show\Field|Collection is_6h(string $label = null) 1624 | * @method Show\Field|Collection is_12h(string $label = null) 1625 | * @method Show\Field|Collection is_day(string $label = null) 1626 | * @method Show\Field|Collection is_week(string $label = null) 1627 | * @method Show\Field|Collection is_month(string $label = null) 1628 | * @method Show\Field|Collection connection(string $label = null) 1629 | * @method Show\Field|Collection queue(string $label = null) 1630 | * @method Show\Field|Collection payload(string $label = null) 1631 | * @method Show\Field|Collection exception(string $label = null) 1632 | * @method Show\Field|Collection failed_at(string $label = null) 1633 | * @method Show\Field|Collection entrust_type(string $label = null) 1634 | * @method Show\Field|Collection trigger_price_buy_rate(string $label = null) 1635 | * @method Show\Field|Collection trigger_price_sell_rate(string $label = null) 1636 | * @method Show\Field|Collection is_market(string $label = null) 1637 | * @method Show\Field|Collection up_or_down(string $label = null) 1638 | * @method Show\Field|Collection start_time(string $label = null) 1639 | * @method Show\Field|Collection order_amount(string $label = null) 1640 | * @method Show\Field|Collection bid_place_threshold(string $label = null) 1641 | * @method Show\Field|Collection ask_place_threshold(string $label = null) 1642 | * @method Show\Field|Collection attempts(string $label = null) 1643 | * @method Show\Field|Collection reserved_at(string $label = null) 1644 | * @method Show\Field|Collection available_at(string $label = null) 1645 | * @method Show\Field|Collection coin_chinese_name(string $label = null) 1646 | * @method Show\Field|Collection coin_market_price(string $label = null) 1647 | * @method Show\Field|Collection contact_email(string $label = null) 1648 | * @method Show\Field|Collection cotes_const(string $label = null) 1649 | * @method Show\Field|Collection agency_personnel(string $label = null) 1650 | * @method Show\Field|Collection currency_code(string $label = null) 1651 | * @method Show\Field|Collection currency_identification(string $label = null) 1652 | * @method Show\Field|Collection placement(string $label = null) 1653 | * @method Show\Field|Collection official_website(string $label = null) 1654 | * @method Show\Field|Collection currency_circulation(string $label = null) 1655 | * @method Show\Field|Collection coin_turnover(string $label = null) 1656 | * @method Show\Field|Collection coin_allocation_proportion(string $label = null) 1657 | * @method Show\Field|Collection cash_people_counting(string $label = null) 1658 | * @method Show\Field|Collection online_bourse(string $label = null) 1659 | * @method Show\Field|Collection private_cemetery_price(string $label = null) 1660 | * @method Show\Field|Collection block_network_type(string $label = null) 1661 | * @method Show\Field|Collection currency_issue_date(string $label = null) 1662 | * @method Show\Field|Collection blockchain_browser(string $label = null) 1663 | * @method Show\Field|Collection official_wallet_address(string $label = null) 1664 | * @method Show\Field|Collection contract_address(string $label = null) 1665 | * @method Show\Field|Collection twitter_link(string $label = null) 1666 | * @method Show\Field|Collection telegram_link(string $label = null) 1667 | * @method Show\Field|Collection facebook_link(string $label = null) 1668 | * @method Show\Field|Collection market_currency_quantity(string $label = null) 1669 | * @method Show\Field|Collection currency_chinese_introduction(string $label = null) 1670 | * @method Show\Field|Collection currency_english_introduction(string $label = null) 1671 | * @method Show\Field|Collection remarks(string $label = null) 1672 | * @method Show\Field|Collection white_paper(string $label = null) 1673 | * @method Show\Field|Collection application_time(string $label = null) 1674 | * @method Show\Field|Collection remark(string $label = null) 1675 | * @method Show\Field|Collection n_id(string $label = null) 1676 | * @method Show\Field|Collection notifiable_type(string $label = null) 1677 | * @method Show\Field|Collection notifiable_id(string $label = null) 1678 | * @method Show\Field|Collection data(string $label = null) 1679 | * @method Show\Field|Collection read_at(string $label = null) 1680 | * @method Show\Field|Collection max_amount(string $label = null) 1681 | * @method Show\Field|Collection is_bet(string $label = null) 1682 | * @method Show\Field|Collection up_odds(string $label = null) 1683 | * @method Show\Field|Collection down_odds(string $label = null) 1684 | * @method Show\Field|Collection draw_odds(string $label = null) 1685 | * @method Show\Field|Collection bet_coin_id(string $label = null) 1686 | * @method Show\Field|Collection odds_uuid(string $label = null) 1687 | * @method Show\Field|Collection open(string $label = null) 1688 | * @method Show\Field|Collection close(string $label = null) 1689 | * @method Show\Field|Collection high(string $label = null) 1690 | * @method Show\Field|Collection low(string $label = null) 1691 | * @method Show\Field|Collection vol(string $label = null) 1692 | * @method Show\Field|Collection price(string $label = null) 1693 | * @method Show\Field|Collection count(string $label = null) 1694 | * @method Show\Field|Collection time(string $label = null) 1695 | * @method Show\Field|Collection open_time(string $label = null) 1696 | * @method Show\Field|Collection country_id(string $label = null) 1697 | * @method Show\Field|Collection birthday(string $label = null) 1698 | * @method Show\Field|Collection city(string $label = null) 1699 | * @method Show\Field|Collection postal_code(string $label = null) 1700 | * @method Show\Field|Collection extra(string $label = null) 1701 | * @method Show\Field|Collection grade_name_en(string $label = null) 1702 | * @method Show\Field|Collection grade_name_tw(string $label = null) 1703 | * @method Show\Field|Collection login_time(string $label = null) 1704 | * @method Show\Field|Collection login_ip(string $label = null) 1705 | * @method Show\Field|Collection login_site(string $label = null) 1706 | * @method Show\Field|Collection login_type(string $label = null) 1707 | * @method Show\Field|Collection describe(string $label = null) 1708 | * @method Show\Field|Collection image(string $label = null) 1709 | * @method Show\Field|Collection limit_amount(string $label = null) 1710 | * @method Show\Field|Collection max_register_time(string $label = null) 1711 | * @method Show\Field|Collection max_register_num(string $label = null) 1712 | * @method Show\Field|Collection min_num(string $label = null) 1713 | * @method Show\Field|Collection max_num(string $label = null) 1714 | * @method Show\Field|Collection price_usd(string $label = null) 1715 | * @method Show\Field|Collection card_enable(string $label = null) 1716 | * @method Show\Field|Collection wechat_enable(string $label = null) 1717 | * @method Show\Field|Collection alipay_enable(string $label = null) 1718 | * @method Show\Field|Collection order_count(string $label = null) 1719 | * @method Show\Field|Collection deal_count(string $label = null) 1720 | * @method Show\Field|Collection deal_rate(string $label = null) 1721 | * @method Show\Field|Collection deal_amount(string $label = null) 1722 | * @method Show\Field|Collection video(string $label = null) 1723 | * @method Show\Field|Collection coin_symbol(string $label = null) 1724 | * @method Show\Field|Collection update_time(string $label = null) 1725 | * @method Show\Field|Collection seller_uid(string $label = null) 1726 | * @method Show\Field|Collection buyer_uid(string $label = null) 1727 | * @method Show\Field|Collection other_uid(string $label = null) 1728 | * @method Show\Field|Collection total_price_usd(string $label = null) 1729 | * @method Show\Field|Collection total_price_cny(string $label = null) 1730 | * @method Show\Field|Collection order_time(string $label = null) 1731 | * @method Show\Field|Collection pay_time(string $label = null) 1732 | * @method Show\Field|Collection deal_time(string $label = null) 1733 | * @method Show\Field|Collection pay_type(string $label = null) 1734 | * @method Show\Field|Collection bank_name(string $label = null) 1735 | * @method Show\Field|Collection real_name(string $label = null) 1736 | * @method Show\Field|Collection card_no(string $label = null) 1737 | * @method Show\Field|Collection open_bank(string $label = null) 1738 | * @method Show\Field|Collection code_img(string $label = null) 1739 | * @method Show\Field|Collection txid(string $label = null) 1740 | * @method Show\Field|Collection confirmations(string $label = null) 1741 | * @method Show\Field|Collection amount_u(string $label = null) 1742 | * @method Show\Field|Collection opt_type(string $label = null) 1743 | * @method Show\Field|Collection en_project_details(string $label = null) 1744 | * @method Show\Field|Collection payment_amount(string $label = null) 1745 | * @method Show\Field|Collection payment_currency(string $label = null) 1746 | * @method Show\Field|Collection subscription_time(string $label = null) 1747 | * @method Show\Field|Collection subscription_currency_name(string $label = null) 1748 | * @method Show\Field|Collection subscription_currency_amount(string $label = null) 1749 | * @method Show\Field|Collection en_direction_out(string $label = null) 1750 | * @method Show\Field|Collection en_direction_in(string $label = null) 1751 | * @method Show\Field|Collection tw_direction_out(string $label = null) 1752 | * @method Show\Field|Collection tw_direction_in(string $label = null) 1753 | * @method Show\Field|Collection user_old_grade(string $label = null) 1754 | * @method Show\Field|Collection user_new_grade(string $label = null) 1755 | * @method Show\Field|Collection wallet_id(string $label = null) 1756 | * @method Show\Field|Collection omni_wallet_address(string $label = null) 1757 | * @method Show\Field|Collection s_user_id(string $label = null) 1758 | * @method Show\Field|Collection logable_id(string $label = null) 1759 | * @method Show\Field|Collection logable_type(string $label = null) 1760 | * @method Show\Field|Collection address_note(string $label = null) 1761 | * @method Show\Field|Collection address_type(string $label = null) 1762 | * @method Show\Field|Collection total_amount(string $label = null) 1763 | * @method Show\Field|Collection referrer(string $label = null) 1764 | * @method Show\Field|Collection phone_status(string $label = null) 1765 | * @method Show\Field|Collection email_status(string $label = null) 1766 | * @method Show\Field|Collection google_token(string $label = null) 1767 | * @method Show\Field|Collection google_status(string $label = null) 1768 | * @method Show\Field|Collection second_verify(string $label = null) 1769 | * @method Show\Field|Collection is_agency(string $label = null) 1770 | * @method Show\Field|Collection is_system(string $label = null) 1771 | * @method Show\Field|Collection trade_verify(string $label = null) 1772 | * @method Show\Field|Collection from(string $label = null) 1773 | * @method Show\Field|Collection to(string $label = null) 1774 | */ 1775 | class Show {} 1776 | 1777 | /** 1778 | * @method \Dcat\Admin\Extension\UEditor\Form\UEditor ueditor(...$params) 1779 | */ 1780 | class Form {} 1781 | 1782 | } 1783 | 1784 | namespace Dcat\Admin\Grid { 1785 | /** 1786 | 1787 | */ 1788 | class Column {} 1789 | 1790 | /** 1791 | 1792 | */ 1793 | class Filter {} 1794 | } 1795 | 1796 | namespace Dcat\Admin\Show { 1797 | /** 1798 | 1799 | */ 1800 | class Field {} 1801 | } 1802 | --------------------------------------------------------------------------------