Logs.php 289 B

123456789101112131415161718
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class Logs extends Model
  5. {
  6. /**
  7. * 添加日志
  8. */
  9. public static function addLog($title, $comment)
  10. {
  11. self::create(['title' => $title, 'comment' => $comment, 'create_time' => date('Y-m-d H:i:s')]);
  12. }
  13. }