package incheon.ags.pss.edit.smlt.service.impl;

import java.util.List;
import javax.annotation.Resource;
import org.springframework.stereotype.Service;

import incheon.ags.pss.edit.smlt.mapper.WindMapper;
import incheon.ags.pss.edit.smlt.service.WindService;
import incheon.ags.pss.edit.smlt.vo.WindMonthlyRequestVO;
import incheon.ags.pss.edit.smlt.vo.WindMonthlyStatVO;

@Service
public class WindServiceImpl implements WindService {
    @Resource
    private WindMapper mapper;

    @Override
    public List<WindMonthlyStatVO> selectWindMonthlyStats(WindMonthlyRequestVO vo) throws Exception {
        return mapper.selectWindMonthlyStats(vo);
    }
}