post()->goCheck(); PayConfigLogic::setConfig($params); return $this->success('设置成功', [], 1, 1); } /** * @notes 获取支付配置 * @return Json * @author 段誉 * @date 2023/2/23 16:14 */ public function getConfig(): Json { $id = (new PayConfigValidate())->goCheck('get'); $result = PayConfigLogic::getConfig($id); return $this->success('获取成功', $result); } /** * @notes * @return Json * @author 段誉 * @date 2023/2/23 16:15 */ public function lists(): Json { return $this->dataLists(new PayConfigLists()); } }