shenyijian
2024-06-21 f20611265f7d34fd4fbcdfdaff6cb9cccd0b25fc
skjcmanager/skjcmanager-service/skjcmanager-sm/src/main/java/cn/gistack/sm/sjztmd/mapper/AttAdBaseMapper.java
@@ -1,13 +1,12 @@
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;
import org.springframework.web.bind.annotation.PostMapping;
import java.util.List;
import java.util.Map;
@@ -20,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);
@@ -37,9 +38,20 @@
    * @param res_cd
    * @return
    */
    List<PersonVO> getPersonListByResGuid(@Param("res_cd")String res_cd,@Param("roleName") String areaList);
    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);
}