package com.qianwen.smartman.modules.system.service; import com.baomidou.mybatisplus.extension.service.IService; import java.util.List; import com.qianwen.smartman.modules.system.entity.Workbench; import com.qianwen.smartman.modules.system.vo.WorkbenchVO; public interface IWorkbenchService extends IService { List listWorkbench(Integer enable); Workbench addWorkbench(String name); Boolean updateWorkbench(WorkbenchVO workbenchVO); Boolean switchWorkbench(Long id, Integer status); Boolean deleteWorkbench(Long id); Boolean sortWorkbench(List workbenchVOS); Boolean initWorkbench(Long userId, String userName); }