package com.artfess.cqlt.dao;

import com.artfess.cqlt.model.SysSubjectTarget;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;

import java.util.List;

/**
 * 统计分析指标库表 Mapper 接口
 *
 * @company 阿特菲斯信息技术有限公司
 * @author min.wu
 * @since 2023-03-30
 */
public interface SysSubjectTargetDao extends BaseMapper<SysSubjectTarget> {

    List<SysSubjectTarget> getTargetList(@Param("businessList") List<String> businessList);

    List<SysSubjectTarget> lowerLevelTargetList(@Param("subjectId") String subjectId);

}
