From 548678d4cf3d1792e2cb989f26cf7e8af0ec8fde Mon Sep 17 00:00:00 2001 From: zhubaomin <zhubaomin> Date: 星期三, 09 四月 2025 11:41:49 +0800 Subject: [PATCH] 优化灌溉计划起止时间格式,精确到分钟 --- pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSt/StRechargeClientDayMapper.java | 88 ++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 88 insertions(+), 0 deletions(-) diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSt/StRechargeClientDayMapper.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSt/StRechargeClientDayMapper.java new file mode 100644 index 0000000..9508b16 --- /dev/null +++ b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSt/StRechargeClientDayMapper.java @@ -0,0 +1,88 @@ +package com.dy.pipIrrGlobal.daoSt; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.dy.pipIrrGlobal.pojoSt.StRechargeClientDay; +import com.dy.pipIrrGlobal.voSt.VoClientRechargeStatistics; +import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; + +import java.util.List; + +/** + * @Author: liurunyu + * @Date: 2024/12/25 16:04 + * @Description + */ +@Mapper +public interface StRechargeClientDayMapper extends BaseMapper<StRechargeClientDay> { + /** + * delete by primary key + * + * @param id primaryKey + * @return deleteCount + */ + int deleteByPrimaryKey(Long id); + + /** + * insert record to table + * + * @param record the record + * @return insert count + */ + int insert(StRechargeClientDay record); + + /** + * insert record to table selective + * + * @param record the record + * @return insert count + */ + int insertSelective(StRechargeClientDay record); + + /** + * select by primary key + * + * @param id primary key + * @return object by primary key + */ + StRechargeClientDay selectByPrimaryKey(Long id); + + /** + * update record selective + * + * @param record the updated record + * @return update count + */ + int updateByPrimaryKeySelective(StRechargeClientDay record); + + /** + * update record + * + * @param record the updated record + * @return update count + */ + int updateByPrimaryKey(StRechargeClientDay record); + + ///////////////////////////////////////////////////// + //缁熻鐩稿叧 + /** + * 鎸囧畾骞存寚瀹氭湀鐨勫悇鍐滄埛缁熻 + * + * @param year + * @param month + * @return + */ + List<VoClientRechargeStatistics> statisticsByClient(@Param("year") Integer year, @Param("month") Integer month); + + /** + * 鏌ヨ鎸囧畾鍐滄埛鎸囧畾骞存寚瀹氭湀鐨勫悇鏃ョ粺璁� + * + * @param clientId + * @param year + * @param month + * @return + */ + List<StRechargeClientDay> selectByClientAndYearAndMonth(@Param("clientId") Long clientId, + @Param("year") Integer year, + @Param("month") Integer month); +} \ No newline at end of file -- Gitblit v1.8.0