会员余额明细获取

This commit is contained in:
张松
2025-03-25 00:37:17 +08:00
parent 9696b0edc3
commit 25a80d5bb5
5 changed files with 66 additions and 6 deletions

View File

@@ -4,7 +4,9 @@ import com.czg.account.entity.ShopUserFlow;
import com.czg.account.vo.ShopUserFlowVO;
import com.mybatisflex.core.paginate.Page;
import com.mybatisflex.core.service.IService;
import jakarta.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.math.BigDecimal;
/**
@@ -17,5 +19,7 @@ public interface ShopUserFlowService extends IService<ShopUserFlow> {
void updateRefund(Long id, BigDecimal refundAmount);
Page<ShopUserFlowVO> pageInfo(Long shopId, Integer userId, String bizCode);
Page<ShopUserFlowVO> pageInfo(Long shopId, Integer userId, String bizCode, String startTime, String endTime);
void flowDownload(Long shopId, Integer userId, String bizCode, String startTime, String endTime, HttpServletResponse response) throws IOException;
}