12345678910111213141516171819 |
- <?php
- namespace app\admin\model;
- use think\Model;
- class ShortcutContent extends Model
- {
-
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = true;
- public static function getList(){
- $list=self::field('id,content')->select();
- return $list;
- }
- }
|