123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- package com.welampiot.dao;
- import com.welampiot.dto.ChargeDTO;
- import org.apache.ibatis.annotations.Param;
- import java.util.HashMap;
- import java.util.List;
- /**
- * ClassName: ChargeDao
- * Package: com.welampiot.dao
- * Description:
- *
- * @Author: zhj_Start
- * @Create: 2023/4/18 - 11:01
- * @Version: v1.0
- */
- public interface ChargeDao {
- List<ChargeDTO> getDevListByChargeDTO(ChargeDTO dto);
- Integer getTotalBySectionList(ChargeDTO dto);
- Integer getOnlineTotalBySectionList(ChargeDTO dto);
- Integer getAlarmTotalBySectionList(ChargeDTO dto);
- Integer getChargeTotalBySectionList(ChargeDTO dto);
- List<ChargeDTO> getChargeTimeBySectionList(ChargeDTO dto);
- List<ChargeDTO> getChargeMoneyBySectionList(ChargeDTO dto);
- List<ChargeDTO> getChargeEnergyBySectionList(ChargeDTO dto);
- ChargeDTO getChargeInfoByLampPoleId(@Param("lampPoleId") Integer lampPoleId);
- void deleteChargeById(@Param("id") Integer id);
- Integer getLampPoleIdByChargeId(@Param("id") Integer id);
- Integer getChargeCountByLampPoleId(@Param("lampPoleId") Integer lampPoleId);
- void updateLampPoleChargeData(ChargeDTO chargeDTO);
- Integer checkChargeData(ChargeDTO chargeDTO);
- ChargeDTO getTotalChargeEleAndFree(ChargeDTO dto);
- List<ChargeDTO> getChargeListByDTO(ChargeDTO dto);
- Integer getChargeTotalByDTO(ChargeDTO dto);
- ChargeDTO getOneCharge(HashMap<String,Object> map);
- ChargeDTO getOneChargeByLampPoleId(Integer lampPoleId);
- ChargeDTO getOne(Integer lampPoleId);
- List<ChargeDTO> getList(ChargeDTO dto);
- }
|