From dd865e62a9e687aeb2436a59a76bbe461bd83eaf Mon Sep 17 00:00:00 2001 From: yujian <yujian> Date: 星期四, 27 十二月 2018 09:45:00 +0800 Subject: [PATCH] 返回字段结构调整 --- fanli/src/main/java/com/yeshi/fanli/service/inter/order/CommonOrderService.java | 19 ++++++++++--------- 1 files changed, 10 insertions(+), 9 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/inter/order/CommonOrderService.java b/fanli/src/main/java/com/yeshi/fanli/service/inter/order/CommonOrderService.java index 0c93087..468b662 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/inter/order/CommonOrderService.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/inter/order/CommonOrderService.java @@ -36,8 +36,8 @@ * @return * @throws CommonOrderException */ - public List<CommonOrderVO> listGroupOrderNoByUid(long start, int count, Long uid, Integer state, Integer type, - String orderNo, String startTime, String endTime) throws CommonOrderException; + public List<CommonOrderVO> listGroupOrderNoByUid(long start, int count, Long uid, Integer state, + Integer type,Integer orderState,String orderNo, String startTime, String endTime, Integer dateType) throws CommonOrderException; /** * 缁熻鏌ヨ @@ -50,8 +50,8 @@ * @return * @throws CommonOrderException */ - long countGroupOrderNoByUid(Long uid, Integer state, Integer type, String orderNo, String startTime, String endTime) - throws CommonOrderException; + long countGroupOrderNoByUid(Long uid, Integer state, Integer type,Integer orderState, + String orderNo, String startTime, String endTime, Integer dateType) throws CommonOrderException; /** * 绉诲姩娈佃鍗曞垪琛� @@ -61,8 +61,8 @@ * @param type 鍒拌处鐘舵�� * @return */ - public List<CommonOrderVO> getOrderByUid(Long page, Long uid, Integer state, Integer type, - String orderNo, String startTime, String endTime) throws CommonOrderException; + public List<CommonOrderVO> getOrderByUid(Integer page, Long uid, Integer state, Integer type, + Integer orderState, String orderNo, String startTime, String endTime, Integer dateType) throws CommonOrderException; /** * 缁熻璁㈠崟-鏍规嵁绾㈠寘绫诲瀷 鑷喘 閭�璇� 鍒嗕韩 @@ -77,14 +77,14 @@ * @param uid * @return */ - public long countOrder(Long uid, Integer isToday); + public long countOrder(Long uid, Integer type, Integer isToday); /** * 缁熻璁㈠崟 * @param uid * @return */ - public BigDecimal countOrderMoney(Long uid, Integer isToday); + public BigDecimal countOrderMoney(Long uid, Integer type, Integer isToday); /** * 鏍规嵁鏉′欢缁熻 @@ -94,6 +94,7 @@ * @param endTime * @return */ - public Map<String, BigDecimal> countByUidAndOrderState(Long uid, Integer type, String startTime, String endTime); + public Map<String, BigDecimal> countByUidAndOrderState(Long uid, Integer type, String startTime, + String endTime, Integer day); } -- Gitblit v1.8.0