UserInfo.php 417 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * This file is part of EasySwoole.
  4. *
  5. * @link https://www.easyswoole.com
  6. * @document https://www.easyswoole.com
  7. * @contact https://www.easyswoole.com/Preface/contact.html
  8. * @license https://github.com/easy-swoole/easyswoole/blob/3.x/LICENSE
  9. */
  10. namespace EasySwoole\ORM\Tests\models;
  11. use EasySwoole\ORM\AbstractModel;
  12. class UserInfo extends AbstractModel
  13. {
  14. protected $tableName = 'user_info';
  15. }