dd/app/Models/ArticleCacheTime.php
2025-11-13 18:03:24 +08:00

25 lines
448 B
PHP
Executable File

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ArticleCacheTime extends Model
{
protected $table = 'article_cache_time';
public $timestamps = false;
// public static function _listKey()
// {
// $aSelf = self::all()->toArray();
//
// foreach ($aSelf as &$aSelfRow) {
// unset($aSelfRow["content"]);
// }
//
// return $aSelf;
// }
}