From beb6e85c9b054e8edced241c3367814a0a19d70c Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Wed, 07 Apr 2021 11:42:38 +0800 Subject: [PATCH] Merge branch 'score_shop' of http://120.27.238.55:7000/r/beauty-erp into score_shop --- zq-erp/src/main/java/com/matrix/system/hive/dao/SysOrderFlowDao.java | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/hive/dao/SysOrderFlowDao.java b/zq-erp/src/main/java/com/matrix/system/hive/dao/SysOrderFlowDao.java index 4486858..7c816e3 100644 --- a/zq-erp/src/main/java/com/matrix/system/hive/dao/SysOrderFlowDao.java +++ b/zq-erp/src/main/java/com/matrix/system/hive/dao/SysOrderFlowDao.java @@ -1,8 +1,11 @@ package com.matrix.system.hive.dao; import com.matrix.system.hive.bean.SysOrderFlow; +import com.matrix.system.hive.dto.OrderFlowListDto; +import com.matrix.system.hive.vo.OrderFlowVo; import org.apache.ibatis.annotations.Param; +import java.util.Date; import java.util.List; public interface SysOrderFlowDao { @@ -12,4 +15,12 @@ public List<SysOrderFlow> selectByOrderId(@Param("orderId") Long orderId); public List<SysOrderFlow> selectPayMethodsAmountByOrderId(@Param("orderId") Long orderId); + + List<OrderFlowVo> selectInPage(@Param("record") OrderFlowListDto orderFlowListDto); + + Integer selectTotal(@Param("record")OrderFlowListDto orderFlowListDto); + + Integer updateTimeByOrderId(@Param("orderId") Long orderId, @Param("payTime") Date payTime); + + Integer deleteByOrderId(@Param("orderId") Long orderId); } -- Gitblit v1.9.1