You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fu-hsi-service/src/main/java/com/supervision/police/service/ModelAtomicIndexService.java

23 lines
652 B
Java

10 months ago
package com.supervision.police.service;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.supervision.police.domain.ModelAtomicIndex;
import com.supervision.police.mapper.ModelAtomicIndexMapper;
import java.util.List;
public interface ModelAtomicIndexService {
ModelAtomicIndexMapper getMapper();
IPage<ModelAtomicIndex> selectAll(IPage<ModelAtomicIndex> iPage,ModelAtomicIndex index);
List<ModelAtomicIndex> selectByCaseType(String caseType);
List<ModelAtomicIndex> selectBatchIds(List<String> ids);
List<ModelAtomicIndex> listCaseAtomicIndex(List<String> indexIdList, String caseId, String indexSource);
}