| 123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * 平台币券说明
- * Created by PhpStorm.
- * User: cqingt
- * Date: 2018/5/16
- * Time: 11:16
- */
- namespace app\api\controller\v1;
- use app\api\controller\Api;
- class CoinInstruction extends Api
- {
- protected $_model;
- public function _initialize()
- {
- $this->_model = model('Common/CoinInstruction');
- }
- public function index()
- {
- $info = $this->_model->getInstruction();
- $this->assign('content', $info);
- return $this->fetch('index');
- }
- }
|