admin
2022-08-25 146dbd5ed24c1fe63766aa45e0ce602caa39748e
fanli/src/main/java/com/yeshi/fanli/service/inter/order/CommonOrderService.java
@@ -244,7 +244,7 @@
     * @param keyType
     * @param key
     * @param state
     * @param type
     * @param typeList
     * @param orderState
     * @param startTime
     * @param endTime
@@ -253,11 +253,11 @@
     */
    public List<CommonOrderVO> listQuery(long start, int count, Integer keyType, String key, Integer state,
                                         Integer type, Integer orderState, String startTime, String endTime, Integer source,
                                         List<Integer> typeList, Integer orderState, String startTime, String endTime, Integer source,
                                         List<Long> listShopId, List<Long> listGoodsId, Date minTime, BigDecimal money, BigDecimal payment, SystemEnum system)
            throws CommonOrderException;
    public long countQuery(Integer keyType, String key, Integer state, Integer type, Integer orderState,
    public long countQuery(Integer keyType, String key, Integer state, List<Integer> typeList, Integer orderState,
                           String startTime, String endTime, Integer source,
                           List<Long> listShopId, List<Long> listGoodsId, Date minTime, BigDecimal money, BigDecimal payment, SystemEnum system) throws CommonOrderException;
@@ -278,7 +278,7 @@
     * @param orderNo
     * @return
     */
    public JSONObject getRewardJumpInfo(String orderNo, Integer goodsType);
    public JSONObject getRewardJumpInfo(String orderNo, Integer goodsType, SystemEnum system);
    /**
     * 根据交易号获取订单详情
@@ -516,4 +516,15 @@
     */
    public List<CommonOrder> listByGoodsIdAndUidAndMinThirdCreateTime(Long goodsId, Long uid, Date minThirdCreateTime);
    /**
     * 获取处于已付款状态的订单
     *
     * @param sourceType         订单来源类型
     * @param minThirdCreateTime 最小第三方创建时间
     * @param maxThirdCreateTime 最大第三方创建时间
     * @return
     */
    public List<CommonOrder> listPayStateOrder(int sourceType, Date minThirdCreateTime, Date maxThirdCreateTime);
}