Jelajahi Sumber

[fix]
1、 增加参数校验

chenchen 5 bulan lalu
induk
melakukan
af0a860fe5

+ 7 - 0
application-webadmin/src/main/java/com/tourism/webadmin/app/website/controller/TourismProjectToWebController.java

@@ -4,6 +4,8 @@ import cn.dev33.satoken.annotation.SaIgnore;
 import com.tourism.common.core.annotation.MyRequestBody;
 import com.tourism.common.core.constant.ErrorCodeEnum;
 import com.tourism.common.core.object.*;
+import com.tourism.common.core.util.MyCommonUtil;
+import com.tourism.common.core.validator.UpdateGroup;
 import com.tourism.webadmin.app.website.dto.TourismBookProjectDto;
 import com.tourism.webadmin.app.website.dto.TourismProjectToWebDto;
 import com.tourism.webadmin.app.website.service.TourismProjectToWebService;
@@ -15,6 +17,7 @@ import io.swagger.v3.oas.annotations.tags.Tag;
 import jakarta.servlet.http.HttpServletRequest;
 import jakarta.validation.Valid;
 import jakarta.validation.constraints.NotNull;
+import jakarta.validation.groups.Default;
 import lombok.extern.slf4j.Slf4j;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -90,6 +93,10 @@ public class TourismProjectToWebController {
     */
     @PostMapping("/bookProject")
     public ResponseResult<Integer> bookProject(HttpServletRequest request,@MyRequestBody TourismBookProjectDto tourBookInfoDto) {
+        String errorMessage = MyCommonUtil.getModelValidationError(tourBookInfoDto, Default.class, UpdateGroup.class);
+        if (errorMessage != null) {
+            return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, errorMessage);
+        }
         Boolean state = tourismProjectToWebService.bookProject(request, tourBookInfoDto);
         if(!state){
             return ResponseResult.success(2);

+ 4 - 4
application-webadmin/src/main/java/com/tourism/webadmin/app/website/dto/TourismBookProjectDto.java

@@ -9,18 +9,18 @@ import java.util.Date;
 @Data
 public class TourismBookProjectDto {
 
-    @NotNull(message = "type不能为空!")
+    @NotNull(message = "type不能为空!", groups = {UpdateGroup.class})
     private Integer type;
 
-    @NotNull(message = "项目不能为空!")
+    @NotNull(message = "项目不能为空!", groups = {UpdateGroup.class})
     private Long projectId;
 
-    @NotNull(message = "成人数量不能为空!")
+    @NotNull(message = "成人数量不能为空!", groups = {UpdateGroup.class})
     private Integer adultNumber;
 
     private Integer childrenNumber;
 
-    @NotNull(message = "预定日期不能为空!")
+    @NotNull(message = "预定日期不能为空!", groups = {UpdateGroup.class})
     private Date startDate;
 
     public String getString() {