IntelligentRecognition/ah-jjsp-service/.svn/pristine/5e/5e62a1d34e02dc9156b3ea6f189...

27 lines
607 B
Plaintext

package com.sercurityControl.proteam.dutyTask.mapper;
import com.sercurityControl.proteam.dutyTask.domain.HistoryDto;
import org.apache.ibatis.annotations.MapKey;
import org.springframework.stereotype.Repository;
import java.util.List;
import java.util.Map;
/**
* @author 10488
* 综合展示 历史数据
*/
@Repository("HistoryMapper")
public interface HistoryMapper {
/**
* 历史记录
* @param dto
* @return Map<Object>
* @author cwchen
* @date 2024/1/26 10:27
*/
@MapKey(value = "num")
List<Map<String, Object>> getHistoryByDateType(HistoryDto dto);
}