package com.yiboshi.science.service;
import com.yiboshi.science.base.BaseService;
import com.yiboshi.science.entity.ComExpertGroup;
import com.yiboshi.science.param.dto.ComExpertGroupDTO;
import com.yiboshi.science.param.query.ComExpertGroupQueryVO;
import java.util.List;
public interface ComExpertGroupService extends BaseService<ComExpertGroupQueryVO, ComExpertGroupDTO, ComExpertGroup> {
/**
* 插入列表
*
* @param expertGroup
* @param batchId
*/
void insertOrUpdateGroupList(List<ComExpertGroupDTO> expertGroup, String batchId);
/**
* 插入列表
*
* @param batchId
* @param batchId
*/
List<ComExpertGroupDTO> getExpertGroupListByBatchId(String batchId);
List<ComExpertGroupDTO> getExpertGroupList();
}
-
徐俊 authoredd3497d84