|
|
@@ -43,6 +43,17 @@ public class H5Controller
|
|
|
return mv;
|
|
|
}
|
|
|
|
|
|
+ @GetMapping("/childrenPrivacy")
|
|
|
+ public ModelAndView childrenPrivacy( )
|
|
|
+ {
|
|
|
+ String json=configService.selectConfigByKey("his.agreementConfig");
|
|
|
+ AgreementConfig config= JSONUtil.toBean(json, AgreementConfig.class);
|
|
|
+ ModelAndView mv=new ModelAndView();
|
|
|
+ mv.addObject("childrenPrivacy", config.getChildrenPrivacy());
|
|
|
+ mv.setViewName("childrenPrivacy");
|
|
|
+ return mv;
|
|
|
+ }
|
|
|
+
|
|
|
@GetMapping("/healthCustomerService")
|
|
|
public ModelAndView healthCustomerService( )
|
|
|
{
|