| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.vci.ubcs.code.entity.DockingPreClassify; |
| | | import com.vci.ubcs.starter.revision.model.TreeQueryObject; |
| | | import com.vci.ubcs.starter.web.pagemodel.Tree; |
| | | |
| | | import java.util.List; |
| | | |
| | | /*** |
| | | * 集团分类服务 |
| | |
| | | * @date 2022-05-23 |
| | | */ |
| | | public interface IDockingPreClassifyService extends IService<DockingPreClassify> { |
| | | |
| | | |
| | | |
| | | /** |
| | | * 查询主题库分类 树 |
| | | * @param treeQueryObject 树查询对象 |
| | | * @return 主题库分类 显示树 |
| | | */ |
| | | List<Tree> treeCompanyGroupClassify(TreeQueryObject treeQueryObject); |
| | | } |