喻健
2018-12-25 f28cb1b4e59305480ef1effee38b1dc411f775a4
fanli/src/main/java/com/yeshi/fanli/service/inter/order/CommonOrderService.java
@@ -61,7 +61,7 @@
    * @param type 到账状态
    * @return
    */
   public List<CommonOrderVO> getOrderByUid(Long page, Long uid, Integer state, Integer type,
   public List<CommonOrderVO> getOrderByUid(Integer page, Long uid, Integer state, Integer type,
         String orderNo, String startTime, String endTime) 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);
   /**
    * 根据条件统计
@@ -96,4 +96,17 @@
    */
   public Map<String, BigDecimal> countByUidAndOrderState(Long uid, Integer type, String startTime, String endTime);
   /**
    * 奖金列表统计
    * @param page
    * @param uid
    * @param type
    * @param day
    * @return
    * @throws CommonOrderException
    */
   public List<CommonOrderVO> listBonusOrder(Integer page, Long uid, Integer type, Integer day) throws CommonOrderException;
   public Map<String, BigDecimal> countBonusOrderByState(Long uid, Integer type, Integer day);
}