package com.artfess.cqlt.manager;

import com.artfess.base.manager.BaseManager;
import com.artfess.cqlt.model.QfReportSubject;
import com.artfess.cqlt.model.QfSubjectInfo;
import com.artfess.cqlt.model.QfSubjectRelation;
import org.apache.ibatis.annotations.Param;

import java.util.List;

/**
 * 报表填报科目 服务类
 *
 * @company 阿特菲斯信息技术有限公司
 * @author 管理员
 * @since 2023-02-17
 */
public interface QfReportSubjectManager extends BaseManager<QfReportSubject> {

    List<QfSubjectInfo> getSubjectInfo(@Param("reportId") String reportId);

    List<QfSubjectRelation> getRelationList(String reportId);
}
