AutoreplyTest.php 304 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Bear
  5. * Date: 2019/7/24
  6. * Time: 下午4:12
  7. */
  8. class AutoreplyTest extends TestInit
  9. {
  10. public function testInit()
  11. {
  12. $auto = new \app\common\model\AutoreplyCollect();
  13. $data = $auto->where('id',7)->find();
  14. var_dump($data);
  15. }
  16. }