Files
jianbing/app/api/logic/ShopLogic.php
2025-05-19 11:04:29 +08:00

11 lines
197 B
PHP

<?php
namespace app\api\logic;
use think\facade\Db;
class ShopLogic
{
public static function getShopList()
{
return Db::name('shop')->where("state",1)->select()->toArray();
}
}