DemoHello.php 343 B

1234567891011121314
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
  4. * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
  5. * @author pillar<ltmn@qq.com>
  6. * 应用模型,模型的使用见Thinkphp5.1的在线手册
  7. */
  8. namespace app\demo\model;
  9. use think\Model;
  10. class DemoHello extends Model{
  11. }