PluginDemoModel.php 857 B

1234567891011121314151617181920212223
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2018 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: Dean <zxxjjforever@163.com>
  8. // +----------------------------------------------------------------------
  9. namespace plugins\demo\model;
  10. //Demo插件英文名,改成你的插件英文就行了
  11. use think\Model;
  12. //Demo插件英文名,改成你的插件英文就行了,插件数据表最好加个plugin前缀再加表名,这个类就是对应“表前缀+plugin_demo”表
  13. class PluginDemoModel extends Model
  14. {
  15. //自定义方法
  16. public function test()
  17. {
  18. echo 'hello';
  19. }
  20. }