ludc
2023-07-11 728546f4621e893019dea545f14b6e617301b15b
Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/mapper/CodeClassifyMapper.java
@@ -72,10 +72,25 @@
   /**
    * 查找树形结构
    *
    * @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(@Param("oid") String oid);
   List<CodeClassify> selectAllLevelChildHasPath(@Param("oid") String oid,@Param("fieldInPath")String fieldInPath);
   @MapKey("OID")
@@ -88,4 +103,18 @@
   @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);
   public List<CodeClassify> getIdPathToNamePathByParentId(@Param("parentId")String parentId);
   CodeClassify selectByIdRel(@Param("oid") String oid);
}