Operatelog.php 336 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright (C) 2018 Baidu, Inc. All Rights Reserved.
  4. */
  5. namespace app\common\model;
  6. /**
  7. * 后台用户操作日志表
  8. *
  9. */
  10. class Operatelog extends \think\Model
  11. {
  12. protected $pk = 'id';
  13. protected $table = 'cy_operatelog';
  14. public function addLog($data)
  15. {
  16. return $this->insert($data);
  17. }
  18. }