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