ShortcutContent.php 295 B

12345678910111213141516171819
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. class ShortcutContent extends Model
  5. {
  6. // 自动写入时间戳字段
  7. protected $autoWriteTimestamp = true;
  8. public static function getList(){
  9. $list=self::field('id,content')->select();
  10. return $list;
  11. }
  12. }