|
@@ -64,4 +64,16 @@ public class H5Controller
|
|
|
}
|
|
|
|
|
|
|
|
|
+ @GetMapping("/vipAutomaticService")
|
|
|
+ public ModelAndView vipAutomaticService( )
|
|
|
+ {
|
|
|
+ String json=configService.selectConfigByKey("his.agreementConfig");
|
|
|
+ AgreementConfig config= JSONUtil.toBean(json, AgreementConfig.class);
|
|
|
+ ModelAndView mv=new ModelAndView();
|
|
|
+ mv.addObject("vipAutomaticService", config.getVipAutomaticService());
|
|
|
+ mv.setViewName("vipAutomaticService");
|
|
|
+ return mv;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|