GGWEB/src/main/java/com/mca/map/service/UseHistoryService.java

33 lines
940 B
Java
Raw Normal View History

2022-02-15 07:38:58 +00:00
package com.mca.map.service;
import java.util.List;
import javax.annotation.Resource;
import com.mca.map.vo.UseHistoryChartVO;
2022-02-15 07:38:58 +00:00
import org.springframework.stereotype.Service;
import com.mca.map.mapper.UseHistoryMapper;
import com.mca.map.vo.UseHistorySearchVO;
@Service("useHistoryService")
public class UseHistoryService {
@Resource(name="useHistoryMapper")
UseHistoryMapper useHistoryMapper;
public int selectUseHistoryCnt(UseHistorySearchVO useHistorySearchVO) {
// TODO Auto-generated method stub
return useHistoryMapper.selectUseHistoryCnt(useHistorySearchVO);
}
public List<?> selectUseHistoryList(UseHistorySearchVO useHistorySearchVO) {
// TODO Auto-generated method stub
return useHistoryMapper.selectUseHistoryList(useHistorySearchVO);
}
public List<UseHistoryChartVO> selectDayMapUseData(UseHistorySearchVO useHistorySearchVO) {
return useHistoryMapper.selectDayMapUseData(useHistorySearchVO);
}
2022-02-15 07:38:58 +00:00
}