瀏覽代碼

[fix]
修复报错

chenchen 2 月之前
父節點
當前提交
abac571752

+ 1 - 1
application-webadmin/src/main/java/com/tourism/webadmin/back/controller/TourProjectGroupPurchaseDetailController.java

@@ -77,7 +77,7 @@ public class TourProjectGroupPurchaseDetailController {
         if(CollectionUtils.isNotEmpty(tourProjectGroupPurchaseDetailList)){
             for(TourProjectGroupPurchaseDetail item:tourProjectGroupPurchaseDetailList){
                 if(item.getMaxCount() >= tourProjectGroupPurchaseDetailDto.getMinCount() && tourProjectGroupPurchaseDetailDto.getMaxCount() >= item.getMinCount()){
-                    return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "人数存在交集");
+                    return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "人数存在交集,请修正后再提交。");
                 }
             }
         }