dataLists(new FileLists()); } /** * @notes 移动成功 * @return Json * @author 张无忌 * @date 2021/7/28 15:33 */ public function move() { $params = (new FileValidate())->post()->goCheck('move'); FileLogic::move($params); return $this->success('移动成功', [], 1, 1); } /** * @notes 重命名文件 * @return Json * @author 张无忌 * @date 2021/7/29 17:17 */ public function rename() { $params = (new FileValidate())->post()->goCheck('rename'); FileLogic::rename($params); return $this->success('重命名成功', [], 1, 1); } /** * @notes 删除文件 * @author 张无忌 * @date 2021/7/28 15:40 */ public function delete() { $params = (new FileValidate())->post()->goCheck('delete'); FileLogic::delete($params); return $this->success('删除成功', [], 1, 1); } /** * @notes 分类列表 * @author 张无忌 * @date 2021/7/28 18:34 */ public function listCate() { return $this->dataLists(new FileCateLists()); } /** * @notes 添加文件分类 * @return Json * @author 张无忌 * @date 2021/7/28 14:02 */ public function addCate() { $params = (new FileValidate())->post()->goCheck('addCate'); FileLogic::addCate($params); return $this->success('添加成功', [], 1, 1); } /** * @notes 编辑文件分类 * @return Json * @author 张无忌 * @date 2021/7/28 14:16 */ public function editCate() { $params = (new FileValidate())->post()->goCheck('editCate'); FileLogic::editCate($params); return $this->success('编辑成功', [], 1, 1); } /** * @notes 删除文件分类 * @return Json * @author 张无忌 * @date 2021/7/28 14:50 */ public function delCate() { $params = (new FileValidate())->post()->goCheck('id'); FileLogic::delCate($params); return $this->success('删除成功', [], 1, 1); } }