显式抛出

This commit is contained in:
2025-11-14 17:00:28 +08:00
parent 5ccdef60ae
commit 70a26f1853

View File

@@ -40,11 +40,11 @@ public interface OrderInfoService extends IService<OrderInfo> {
OrderInfo createOrder(OrderInfoAddDTO param) throws ValidateException;
OrderInfo checkOrderPay(CheckOrderPay param) throws OrderValidateException, OrderCancelException;
OrderInfo checkOrderPay(CheckOrderPay param) throws OrderValidateException, OrderCancelException, CzgException;
CzgResult<Object> mergeOrder(MergeOrderDTO param);
void payCallBackOrder(@NotBlank String orderNo, @NotNull JSONObject resultJson,int retryCount);
void payCallBackOrder(@NotBlank String orderNo, @NotNull JSONObject resultJson, int retryCount);
void refundCallBackOrder(@NotBlank String orderNo, @NotNull JSONObject resultJson);
@@ -53,17 +53,19 @@ public interface OrderInfoService extends IService<OrderInfo> {
void expired(Long orderId);
OrderInfo createPayOrder(Long shopId, BigDecimal amount, String remark);
void getOrderAmount(List<OrderDetail> orderDetails, BigDecimalDTO totalAmount, BigDecimalDTO packAmount,
BigDecimalDTO tempAmount, LimitRateDTO limitRate, boolean isAllPack, Integer userAllPack, boolean isVipPrice);
Boolean printOrder(Long shopId, OrderInfoPrintDTO orderInfoPrintDTO);
Boolean removeOrderDetail(Long shopId, Long orderId, Long detailId);
Boolean cancelledOrder(Long shopId, Long orderId) throws OrderCancelException ;
Boolean cancelledOrder(Long shopId, Long orderId) throws OrderCancelException;
Boolean cancelledPlaceOrder(Long shopId, Long orderId, Integer placeNum);
Boolean updatePayOrderId(Long orderId, Long paymentId, String payType, String remark);
Boolean updatePayOrderId(Long orderId, Long paymentId, String payType, String remark);
}