jinpengyong
2024-06-18 7a1c0a8f26b54db6fdf0dcb9a2568aa9811f8f4c
screen-api/src/main/java/com/moral/api/mapper/ResponsibilityUnitMapper.java
@@ -3,6 +3,7 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.moral.api.entity.ResponsibilityUnit;
import com.moral.api.pojo.ext.responsibility.ResponsibilityUnitExt;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -16,8 +17,20 @@
     */
    List<Integer> selectResultList(@Param("id") Integer id);
    String selectAreaCode(@Param("id") Integer id);
    List<ResponsibilityUnitExt> selectResponsibilityUnitList(@Param("id") Integer id);
    /**
     * 查询字典id
     */
    List<Integer> selectCodeList(@Param("code") String code,@Param("id") Integer id);
    /**
     * 查询字典类型名字
     * @param code
     * @param id
     * @return
     */
    String selectName(@Param("code") String code,@Param("id") Integer id);
}