admin
2020-07-03 651a15c78f668bef3859d9ed1bb7ad0b669d3600
fanli/src/main/java/com/yeshi/fanli/service/inter/order/CommonOrderService.java
@@ -444,10 +444,10 @@
    */
   public List<CommonOrderVO> getOrderList(AcceptData acceptData, Integer page, Long uid, Integer state, Integer type,
         Integer orderState, String orderNo, String startTime, String endTime, Integer dateType,
         List<Integer> listSource, boolean notBackSuVip) throws CommonOrderException, Exception;
         List<Integer> listSource) throws CommonOrderException, Exception;
   long countOrderList(Long uid, Integer state, Integer type, Integer orderState, String orderNo, String startTime,
         String endTime, Integer dateType, List<Integer> listSource, boolean notBackSuVip) throws CommonOrderException;
         String endTime, Integer dateType, List<Integer> listSource);
   /**
    * 维权金额计算
@@ -480,4 +480,20 @@
    */
   public List<CommonOrder> listByOrderNo(String orderNo);
   /**
    * 根据订单类型+ 订单号查询
    * @param uid
    * @param orderNO
    * @param sourceType
    * @return
    */
   public List<CommonOrder> getByOrderNoAndSourceType(Long uid, String orderNO, int sourceType);
   /**
    * 首单
    * @param uid
    * @return
    */
   public CommonOrder getFirstOrder(Long uid);
}