guoshilong
2024-04-16 62428f7b629da3e4eb40937466e38f2cd9ef7ed9
skjcmanager/skjcmanager-service/skjcmanager-sm/src/main/java/cn/gistack/sm/sjztmd/mapper/AttAdBaseMapper.java
@@ -1,9 +1,9 @@
package cn.gistack.sm.sjztmd.mapper;
import cn.gistack.common.node.TreeNode;
import cn.gistack.sm.sjztmd.vo.PersonVO;
import cn.gistack.sm.sjztmd.entity.AttAdBase;
import cn.gistack.sm.sjztmd.vo.AttAdBaseVO;
import cn.gistack.sm.sjztmd.vo.PersonVO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.MapKey;
import org.apache.ibatis.annotations.Param;
@@ -19,6 +19,8 @@
public interface AttAdBaseMapper extends BaseMapper<AttAdBase> {
   List<AttAdBaseVO> lazyTree(String parentCode, Map<String, Object> param);
   List<AttAdBaseVO> lazyTreeYwxt(String parentCode, Map<String, Object> param);
   List<AttAdBaseVO> lazyTreeAll(String parentCode, Map<String, Object> param);
@@ -36,5 +38,20 @@
    * @param res_cd
    * @return
    */
    List<PersonVO> getPersonListByResGuid(@Param("res_cd")String res_cd);
    List<PersonVO> getPersonListByResGuid(@Param("res_cd")String res_cd, @Param("roleName") String areaList);
   AttAdBaseVO getDetail(@Param("attAdBase") AttAdBase attAdBase);
   boolean customizeSave(@Param("attAdBase") AttAdBase attAdBase);
   String getAdGradByAdCode(@Param("adCode") String adCode);
   AttAdBase getYwxtAdDetail(@Param("adCode") String adCode);
    List<AttAdBase> getYwxtAdList(@Param("adCode") String guid);
    List<AttAdBase> getYwxtAttAdBaseList(@Param("parentId") String parentId);
   List<AttAdBase> getZtAttAdBaseList(@Param("parentId") String parentId);
}