|
@@ -16,6 +16,7 @@ import com.fdkankan.scene.vo.SceneInfoParamVO;
|
|
|
import com.fdkankan.scene.vo.SceneInfoVO;
|
|
import com.fdkankan.scene.vo.SceneInfoVO;
|
|
|
import com.fdkankan.web.controller.BaseController;
|
|
import com.fdkankan.web.controller.BaseController;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
import org.springframework.validation.annotation.Validated;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
@@ -130,6 +131,13 @@ public class SceneController extends BaseController {
|
|
|
return ResultData.ok(sceneDynamicPanelService.checkDynamicPanel(num));
|
|
return ResultData.ok(sceneDynamicPanelService.checkDynamicPanel(num));
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ @Value("${jmga.eventNotice}")
|
|
|
|
|
+ private String testNcos;
|
|
|
|
|
+
|
|
|
|
|
+ @GetMapping("testNcos")
|
|
|
|
|
+ public ResultData testNcos(){
|
|
|
|
|
+ return ResultData.ok(testNcos);
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|