Nessuna descrizione
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.

AdminLogModel.php 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: King超 <23939139@qq.com>
  11. * Date: 2018-11-13
  12. */
  13. namespace weapp\Systemdoctor\model;
  14. use think\Model;
  15. /**
  16. * 模型
  17. */
  18. class AdminLogModel extends Model
  19. {
  20. protected $pk = 'log_id';
  21. // 数据表名,不带前缀
  22. public $name = 'admin_log';
  23. //初始化
  24. protected function initialize()
  25. {
  26. // 需要调用`Model`的`initialize`方法
  27. parent::initialize();
  28. }
  29. public function admin()
  30. {
  31. return $this->hasOne('AdminModel','admin_id','admin_id')->field('admin_id,user_name')->bind('user_name');
  32. }
  33. }