yujian
2020-05-23 28cf328a098334b51a3e9d2d56f983fb8c862211
fanli/src/main/java/com/yeshi/fanli/service/inter/order/CommonOrderService.java
@@ -411,10 +411,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) throws CommonOrderException, Exception;
         List<Integer> listSource, boolean notBackSuVip) throws CommonOrderException, Exception;
   long countOrderList(Long uid, Integer state, Integer type, Integer orderState, String orderNo, String startTime,
         String endTime, Integer dateType, List<Integer> listSource) throws CommonOrderException;
         String endTime, Integer dateType, List<Integer> listSource, boolean notBackSuVip) throws CommonOrderException;
   /**
    * 维权金额计算
@@ -434,4 +434,17 @@
    */
   public long countOrderByUidAndSettled(Long uid, BigDecimal payment);
   /**
    * 获取最新的淘宝订单号
    * @return
    */
   public String getNewestOrderNoByTaoBao();
   /**
    * 根据订单号查询
    * @param orderNo
    * @return
    */
   public List<CommonOrder> listByOrderNo(String orderNo);
}