package com.moral.api.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.moral.api.entity.ResponsibilityUnit; import org.apache.ibatis.annotations.Param; import java.util.List; public interface ResponsibilityUnitMapper extends BaseMapper { /** * 查询责任单位id * @param id * @return */ List selectResultList(@Param("id") Integer id); /** * 查询字典id */ List selectCodeList(@Param("code") String code,@Param("id") Integer id); }