request->get(); $where = []; $status = $get['status'] ?? 0; if (!empty($status)) { $where['status'] = $status; } $where['ghsShopId'] = $this->shopId; $py = $get['py'] ?? ''; if (!empty($py)) { $where['customPy'] = ['like', $py]; } $list = HbClass::getHbList($where); util::success($list); } }