123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- package com.ruoyi.qdtl.service;
- import com.ruoyi.qdtl.domain.TlElectricCarMileage;
- import java.util.List;
- /**
- * 电动车里程统计(每日)Service接口
- *
- * @author ruoyi
- * @date 2022-07-04
- */
- public interface ITlElectricCarMileageService {
- /**
- * 查询电动车里程统计(每日)
- *
- * @param id 电动车里程统计(每日)主键
- * @return 电动车里程统计(每日)
- */
- public TlElectricCarMileage selectTlElectricCarMileageById(Long id);
- /**
- * 查询电动车里程统计(每日)列表
- *
- * @param tlElectricCarMileage 电动车里程统计(每日)
- * @return 电动车里程统计(每日)集合
- */
- public List<TlElectricCarMileage> selectTlElectricCarMileageList(TlElectricCarMileage tlElectricCarMileage);
- /**
- * 新增电动车里程统计(每日)
- *
- * @param tlElectricCarMileage 电动车里程统计(每日)
- * @return 结果
- */
- public int insertTlElectricCarMileage(TlElectricCarMileage tlElectricCarMileage);
- /**
- * 修改电动车里程统计(每日)
- *
- * @param tlElectricCarMileage 电动车里程统计(每日)
- * @return 结果
- */
- public int updateTlElectricCarMileage(TlElectricCarMileage tlElectricCarMileage);
- /**
- * 批量删除电动车里程统计(每日)
- *
- * @param ids 需要删除的电动车里程统计(每日)主键集合
- * @return 结果
- */
- public int deleteTlElectricCarMileageByIds(Long[] ids);
- /**
- * 删除电动车里程统计(每日)信息
- *
- * @param id 电动车里程统计(每日)主键
- * @return 结果
- */
- public int deleteTlElectricCarMileageById(Long id);
- List<TlElectricCarMileage> queryPeriodDate(String startDate, String endDate);
- }
|