| 12345678910111213141516171819202122 |
- <?php
- namespace app\admin\model\dao;
- use think\facade\Cache;
- use think\facade\Db;
- class ShopHotKeywords extends BaseDao
- {
- public static $table = "db_shop_hot_keywords";
- public function __construct()
- {
- }
- public static function getList()
- {
- return Db::table(self::$table)->select()->toArray();
- }
- }
|