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

42 lines
1.1 KiB
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;
2022-03-16 00:34:46 +00:00
import com.mca.cmmn.vo.BaseSearchVO;
import com.mca.map.vo.ChartVO;
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<ChartVO> selectDayMapUseData(UseHistorySearchVO useHistorySearchVO) {
return useHistoryMapper.selectDayMapUseData(useHistorySearchVO);
}
2022-03-16 00:34:46 +00:00
// 방문자수.
public int selectUseVisit(UseHistorySearchVO useHistorySearchVO) {
return useHistoryMapper.selectUseVisit(useHistorySearchVO);
}
2022-02-15 07:38:58 +00:00
}