Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AskUsersLevelModel.php 977B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 陈风任 <491085389@qq.com>
  11. * Date: 2019-07-30
  12. */
  13. namespace weapp\Ask\model;
  14. use think\Db;
  15. use think\Model;
  16. /**
  17. * 模型
  18. */
  19. class AskUsersLevelModel extends Model
  20. {
  21. /**
  22. * 数据表名,不带前缀
  23. */
  24. public $name = 'weapp_ask_users_level';
  25. /**
  26. * 插件标识
  27. */
  28. public $code = 'Ask';
  29. //初始化
  30. protected function initialize()
  31. {
  32. // 需要调用`Model`的`initialize`方法
  33. parent::initialize();
  34. }
  35. }