ShopHotKeywords.php 337 B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\admin\model\dao;
  3. use think\facade\Cache;
  4. use think\facade\Db;
  5. class ShopHotKeywords extends BaseDao
  6. {
  7. public static $table = "db_shop_hot_keywords";
  8. public function __construct()
  9. {
  10. }
  11. public static function getList()
  12. {
  13. return Db::table(self::$table)->select()->toArray();
  14. }
  15. }