yujian
2018-12-27 dd865e62a9e687aeb2436a59a76bbe461bd83eaf
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);
}