lyhzzz 2 years ago
parent
commit
c115d28f6d

+ 1 - 1
src/main/java/com/fdkankan/ucenter/controller/SceneApplyController.java

@@ -36,7 +36,7 @@ public class SceneApplyController {
     public ResultData save(@RequestBody SceneApply sceneApplyEntity){
         if(StringUtils.isEmpty(sceneApplyEntity.getName()) || StringUtils.isEmpty(sceneApplyEntity.getPhone())
          || StringUtils.isEmpty(sceneApplyEntity.getCompany()) || StringUtils.isEmpty(sceneApplyEntity.getJob())
-        || StringUtils.isEmpty(sceneApplyEntity.getCountry()) || StringUtils.isEmpty(sceneApplyEntity.getRemark())){
+        || StringUtils.isEmpty(sceneApplyEntity.getCountry())){
             throw new BusinessException(ErrorCode.MISSING_REQUIRED_PARAMETERS);
         }
         sceneApplyService.save(sceneApplyEntity);