// +---------------------------------------------------------------------- declare (strict_types=1); namespace app\api\model; use app\common\model\Retail as RetailModel; class Retail extends RetailModel { public static function getRetailList() { return self::select(); } public static function detail(array $where = []) { $where = [ 'retail_price_id'=>$where['retail_price_id'], 'retail_status'=>10 ]; return RetailModel::where($where)->select(); } }