handle exception

This commit is contained in:
Cauchy
2023-10-17 16:53:34 +08:00
parent 8daf30493c
commit bdc561895e
6 changed files with 51 additions and 12 deletions

View File

@@ -14,7 +14,7 @@ public interface ExpressOrderService extends IService<ExpressOrder> {
* @param expressOrder
* @throws Exception
*/
void placeExpressOrder(UserAddress userAddress, ExpressOrder expressOrder) throws Exception;
String placeExpressOrder(UserAddress userAddress, ExpressOrder expressOrder);
}