|
@@ -1,7 +1,7 @@
|
|
|
package com.diagbot.web;
|
|
|
|
|
|
-
|
|
|
import com.diagbot.annotation.SysLogger;
|
|
|
+import com.diagbot.annotation.TokenAuth;
|
|
|
import com.diagbot.dto.RespDTO;
|
|
|
import com.diagbot.dto.SysSetInfoDTO;
|
|
|
import com.diagbot.facade.SysSetFacade;
|
|
@@ -35,10 +35,10 @@ public class SysSetController {
|
|
|
@Autowired
|
|
|
SysSetFacade sysSetFacade;
|
|
|
|
|
|
-
|
|
|
@ApiOperation(value = "根据医院编码获取配置信息[by:wangfeng]", notes = "hospitalId :医院id 必填<br> ")
|
|
|
@PostMapping("/getSysSetInfoDatas")
|
|
|
@SysLogger("getSysSetInfoDatas")
|
|
|
+ @TokenAuth
|
|
|
public RespDTO<List<SysSetInfoDTO>> getSysSetInfoDatas(@Valid @RequestBody HospitalSetVO hospitalSetVO) {
|
|
|
List<SysSetInfoDTO> data = sysSetFacade.getSysSetInfoData(hospitalSetVO);
|
|
|
return RespDTO.onSuc(data);
|