package com.gyee.runeconomy.service.auto; import com.gyee.runeconomy.model.auto.TurbineInfoDay; import com.baomidou.mybatisplus.extension.service.IService; import java.text.ParseException; import java.time.LocalDate; import java.util.Date; import java.util.List; /** *

* 服务类 *

* * @author author * @since 2024-11-18 */ public interface ITurbineInfoDayService extends IService { List getTurbineInfoDayList(String wpid, String kssj) throws ParseException; List getTurbineList(String wtid,String kssj,String jssj) throws ParseException; /** * 获取所有风机一段时间电量的和 */ List getTurbineMonthList(String windpowerstationId, LocalDate startDate, LocalDate endDate); /** * 获取单台风机一段时间电量的和 */ TurbineInfoDay getTurbineSingle(String turbineId, Date startDate, Date endDate); /** * 获取单台风机一段时间电量 */ List getTurbineSingleList(String turbineId, Date startDate, Date endDate); }