1234567891011121314151617181920212223 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Bear
- * Date: 2020/6/2
- * Time: 上午10:52
- */
- use app\main\service\BookListChService;
- class BookListChTest extends TestInit
- {
- public function testIds()
- {
- $result = BookListChService::instance()->getListIds(['content'=>['LIKE','%VIP测试资源001%']],[]);
- var_dump($result);
- }
- public function testCollect()
- {
- $data = BookListChService::instance()->getCollectList([7]);
- var_dump($data);
- }
- }
|