dataLists(new WarehouseLists()); } /** * @notes 添加仓库模块 * @return \think\response\Json * @author admin * @date 2025/03/03 09:41 */ public function add() { $params =$this->request->post(); $result = WarehouseLogic::add($params); return $this->success('添加成功', [], 1, 1); } }