11 lines
197 B
PHP
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();
|
|
}
|
|
} |