package com.artfess.data.manager;

import com.artfess.base.query.PageList;
import com.artfess.base.query.QueryFilter;
import com.artfess.data.model.BizExamGeneralPlan;
import com.artfess.base.manager.BaseManager;

import java.util.List;

/**
 * 训练总计划 服务类
 *
 * @company 阿特菲斯信息技术有限公司
 * @author min.wu
 * @since 2024-12-04
 */
public interface BizExamGeneralPlanManager extends BaseManager<BizExamGeneralPlan> {

    boolean saveInfo(BizExamGeneralPlan t);

    BizExamGeneralPlan findById(String id);

    boolean updateInfo(BizExamGeneralPlan t);

    void saveList(List<BizExamGeneralPlan> planList, String planType);

    void updateStatus(String id);

    PageList<BizExamGeneralPlan> findByPage(QueryFilter<BizExamGeneralPlan> queryFilter);
}
