| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.vci.ubcs.code.vo.pagemodel.CodeClassifyVO; |
| | | import org.apache.ibatis.annotations.MapKey; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | * @param oid |
| | | * @return |
| | | */ |
| | | @MapKey("oid") |
| | | Map<String,String> selectAllLevelChildOid(String oid); |
| | | @MapKey("OID") |
| | | Map<String,String> selectAllLevelChildOid(@Param("oid") String oid); |
| | | |
| | | /** |
| | | * 校验是否包含子节点 |
| | |
| | | * @return true 表示包含 |
| | | */ |
| | | // @MapKey("oid") |
| | | Boolean checkHasChild(String oid); |
| | | Boolean checkHasChild(@Param("oid") String oid); |
| | | |
| | | /** |
| | | * 查找树形结构 |
| | |
| | | * @param oid 分类的主键 |
| | | * @return 数据集合 |
| | | */ |
| | | List<CodeClassify> selectCodeClassifyVOByTree(String oid); |
| | | List<CodeClassify> selectCodeClassifyVOByTree(@Param("oid") String oid); |
| | | |
| | | /** |
| | | * 查找树形结构 |
| | | * |
| | | * @return 数据集合 |
| | | */ |
| | | List<CodeClassify> selectCodeClassifyDOByTree(@Param("id") String id,@Param("lcstatus") String lcstatus,@Param("parentcodeclassifyoid") String parentcodeclassifyoid); |
| | | |
| | | /** |
| | | * 查询数据与PL_CODE_KEYATTRREPEAT、PL_CODE_RESEMBLERULE、PL_CODE_RULE联查 |
| | | * |
| | | * @param oids 分类的主键 |
| | | * @return 数据集合 |
| | | */ |
| | | List<CodeClassify> selectClassifyByKeyAndReseRel(@Param("oids") String oids); |
| | | |
| | | /** |
| | | * 查找树形结构 |
| | |
| | | * @param oid 分类的主键 |
| | | * @return 数据集合 |
| | | */ |
| | | List<CodeClassify> selectAllLevelChildHasPath(String oid); |
| | | List<CodeClassify> selectAllLevelChildHasPath(@Param("oid") String oid); |
| | | |
| | | |
| | | @MapKey("oid") |
| | | List<Map<String,Object>> selectAllLevelParentByOid(String oid); |
| | | @MapKey("OID") |
| | | List<Map<String,Object>> selectAllLevelParentByOid(@Param("oid") String oid); |
| | | |
| | | @MapKey("OID") |
| | | List<Map<String,Object>> selectAllLevelParents(@Param("oid") String oid); |
| | | |
| | | |
| | | @MapKey("oid") |
| | | List<Map<String,Object>> selectByFieldPath(String fieldPath); |
| | | @MapKey("OID") |
| | | List<Map<String,Object>> selectByFieldPath(@Param("fieldPath") String fieldPath); |
| | | |
| | | |
| | | /** |
| | | * 查根据id层级获取对象 |
| | | * |
| | | * @param fieldPath 分类的主键 |
| | | * @param fieldName 分类的主键 |
| | | * @return 数据集合 |
| | | */ |
| | | List<CodeClassify> selectByFieldNamePath(@Param("fieldPath") String fieldPath,@Param("fieldName") String fieldName); |
| | | |
| | | |
| | | } |