1234567891011121314151617 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Bear
- * Date: 2019/7/24
- * Time: 下午4:12
- */
- class AutoreplyTest extends TestInit
- {
- public function testInit()
- {
- $auto = new \app\common\model\AutoreplyCollect();
- $data = $auto->where('id',7)->find();
- var_dump($data);
- }
- }
|