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

44 lines
1.3 KiB
Java

10 months ago
package com.supervision.police.service;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
10 months ago
import com.supervision.police.domain.ModelAtomicIndex;
import com.supervision.police.dto.AtomicIndexUsedDTO;
10 months ago
import com.supervision.police.mapper.ModelAtomicIndexMapper;
import java.util.List;
public interface ModelAtomicIndexService extends IService<ModelAtomicIndex> {
10 months ago
ModelAtomicIndexMapper getMapper();
IPage<ModelAtomicIndex> selectAll(IPage<ModelAtomicIndex> iPage,ModelAtomicIndex index);
List<ModelAtomicIndex> selectByCaseType(String caseType);
List<ModelAtomicIndex> selectBatchIds(List<String> ids);
/**
* id
* @param atomicIndexIds id
* @param caseType
* @param indexSource
* @return
*/
List<ModelAtomicIndex> listCaseAtomicIndex(List<String> atomicIndexIds, String caseType, String indexSource);
9 months ago
/**
*
* @param caseType
* @param atomicIndexId id
*/
void whenDeleteAtomicIndex(String caseType,String atomicIndexId);
List<AtomicIndexUsedDTO> atomicUsed(String atomicIndexId);
10 months ago
}