wuzeyu
2024-12-30 dd6e29aba4f614f236cf60aca4aa972a51a8dfb5
pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSt/StClientAmountDayMapper.java
@@ -1,5 +1,6 @@
package com.dy.pipIrrGlobal.daoSt;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoSt.StClientAmountDay;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
@@ -12,7 +13,7 @@
 * @Description
 */
@Mapper
public interface StClientAmountDayMapper {
public interface StClientAmountDayMapper extends BaseMapper<StClientAmountDay> {
    /**
     * delete by primary key
     *
@@ -64,7 +65,6 @@
    //////////////////////////////////////
    //统计相关
    /**
     * 查询用水户一个月所有日的用水量
     * @param clientId
@@ -75,4 +75,13 @@
    List<StClientAmountDay> selectByClientIdAndYearAndMonthAndDay(@Param("clientId")Long clientId,
                                                                  @Param("year")Integer year,
                                                                  @Param("month")Integer month) ;
    //////////////////////////////////////
    //临时任务相关
    /**
     * 删除全部
     * @return
     */
    int deleteAll() ;
}