admin
2019-08-01 a3ea58065f61d16f06a0883737eae320eef5c33a
fanli/src/main/java/com/yeshi/fanli/service/inter/order/CommonOrderService.java
@@ -114,7 +114,7 @@
    * @return
    */
   public Map<String, Object> countBonusOrderMoneyAndNumber(Long uid, Integer type, Integer day, String startTime,
         String endTime);
         String endTime, Integer source);
   /**
    * 根据条件统计
@@ -219,10 +219,10 @@
    */
   public List<CommonOrderVO> listQuery(long start, int count, Integer keyType, String key, Integer state,
         Integer type, Integer orderState, String startTime, String endTime) throws CommonOrderException;
         Integer type, Integer orderState, String startTime, String endTime, Integer source) throws CommonOrderException;
   public long countQuery(Integer keyType, String key, Integer state, Integer type, Integer orderState,
         String startTime, String endTime) throws CommonOrderException;
         String startTime, String endTime, Integer source) throws CommonOrderException;
   /**
@@ -233,7 +233,7 @@
    * @return
    * @throws CommonOrderException
    */
   public CommonOrderVO getCommonOrderByOrderNo(Long uid, String orderNo, Integer orderState)
   public CommonOrderVO getCommonOrderByOrderNo(Long uid, String orderNo, Integer orderState, Integer sourceType)
         throws CommonOrderException;
   /**
@@ -253,4 +253,34 @@
    */
   public CommonOrder selectBySourceTypeAndTradeId(int sourceType, String tradeId);
   /**
    * 删除错误订单
    *
    * @param coId
    */
   public void deleteErrorCommonOrder(Long coId);
   /**
    * 根据订单类型与交易ID查询
    *
    * @param sourceType
    * @param tradeId
    * @return
    */
   public List<CommonOrder> listBySourceTypeAndTradeId(int sourceType, String tradeId);
   /**
    * 根据条件查询订单
    *
    * @param sourceType
    * @param state
    * @param minTime
    * @param maxTime
    * @param page
    * @param pageSize
    * @return
    */
   List<CommonOrder> listBySourceTypeAndStateAndThirdCrateTime(int sourceType, Integer state, Long minTime,
         Long maxTime, int page, int pageSize);
}