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

import java.util.List;

import incheon.ags.pss.edit.smlt.vo.WindMonthlyRequestVO;
import incheon.ags.pss.edit.smlt.vo.WindMonthlyStatVO;

public interface WindService {
    List<WindMonthlyStatVO> selectWindMonthlyStats(WindMonthlyRequestVO vo) throws Exception;

}