| | |
| | | import com.ruoyi.integration.api.model.BmsAbort; |
| | | import com.ruoyi.integration.api.model.BmsDemandAndChargerExportation; |
| | | import com.ruoyi.jianguan.mongodb.base.BaseService; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | public interface BmsDemandAndChargerExportationService extends BaseService<BmsDemandAndChargerExportation> { |
| | |
| | | * @param endTime 结束时间 |
| | | * @return |
| | | */ |
| | | List<BmsDemandAndChargerExportation> getRangeTimeData(String startTime, String endTime); |
| | | List<BmsDemandAndChargerExportation> getRangeTimeData(Date startTime, Date endTime); |
| | | |
| | | } |