| | |
| | | package com.vci.ubcs.code.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.vci.ubcs.code.entity.CodeClassify; |
| | | import com.vci.ubcs.code.entity.DockingPreClassify; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface DockingPreClassifyMapper extends BaseMapper<DockingPreClassify> { |
| | | |
| | | |
| | | /** |
| | | * 查找树形结构 |
| | | * |
| | | * @param oid 分类的主键 |
| | | * @return 数据集合 |
| | | */ |
| | | List<DockingPreClassify> selectCompanyGroupClassifyVOByTree(@Param("oid") String oid); |
| | | |
| | | |
| | | /** |
| | | * 校验是否包含子节点 |
| | | * |
| | | * @param oid 分类的主键 |
| | | * @return true 表示包含 |
| | | */ |
| | | Boolean checkHasChild(@Param("oid") String oid); |
| | | } |