ITlElectricCarMileageService.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package com.ruoyi.qdtl.service;
  2. import com.ruoyi.qdtl.domain.TlElectricCarMileage;
  3. import java.util.List;
  4. /**
  5. * 电动车里程统计(每日)Service接口
  6. *
  7. * @author ruoyi
  8. * @date 2022-07-04
  9. */
  10. public interface ITlElectricCarMileageService {
  11. /**
  12. * 查询电动车里程统计(每日)
  13. *
  14. * @param id 电动车里程统计(每日)主键
  15. * @return 电动车里程统计(每日)
  16. */
  17. public TlElectricCarMileage selectTlElectricCarMileageById(Long id);
  18. /**
  19. * 查询电动车里程统计(每日)列表
  20. *
  21. * @param tlElectricCarMileage 电动车里程统计(每日)
  22. * @return 电动车里程统计(每日)集合
  23. */
  24. public List<TlElectricCarMileage> selectTlElectricCarMileageList(TlElectricCarMileage tlElectricCarMileage);
  25. /**
  26. * 新增电动车里程统计(每日)
  27. *
  28. * @param tlElectricCarMileage 电动车里程统计(每日)
  29. * @return 结果
  30. */
  31. public int insertTlElectricCarMileage(TlElectricCarMileage tlElectricCarMileage);
  32. /**
  33. * 修改电动车里程统计(每日)
  34. *
  35. * @param tlElectricCarMileage 电动车里程统计(每日)
  36. * @return 结果
  37. */
  38. public int updateTlElectricCarMileage(TlElectricCarMileage tlElectricCarMileage);
  39. /**
  40. * 批量删除电动车里程统计(每日)
  41. *
  42. * @param ids 需要删除的电动车里程统计(每日)主键集合
  43. * @return 结果
  44. */
  45. public int deleteTlElectricCarMileageByIds(Long[] ids);
  46. /**
  47. * 删除电动车里程统计(每日)信息
  48. *
  49. * @param id 电动车里程统计(每日)主键
  50. * @return 结果
  51. */
  52. public int deleteTlElectricCarMileageById(Long id);
  53. List<TlElectricCarMileage> queryPeriodDate(String startDate, String endDate);
  54. }