Browse Source

Merge branch 'dev'

xiongzhu 4 years ago
parent
commit
0667e6fccc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/java/com/izouma/nineth/service/GiftOrderService.java

+ 1 - 1
src/main/java/com/izouma/nineth/service/GiftOrderService.java

@@ -77,7 +77,7 @@ public class GiftOrderService {
         }
         int holdDays = sysConfigService.getInt("hold_days");
         if (ChronoUnit.DAYS.between(asset.getCreatedAt(), LocalDateTime.now()) < holdDays) {
-            throw new BusinessException("需持有满" + holdDays + "天才能寄售上架");
+            throw new BusinessException("需持有满" + holdDays + "天才能转赠");
         }
         if (toUserId.equals(userId)) {
             throw new BusinessException("不能送给自己");