Commit 6805e7fcd9eccebafd115118041f041933f0442c

Authored by landong2015
1 parent 3ab3df73e3

New changelist

Showing 2 changed files with 16 additions and 5 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/AntenatalExaminationController.java View file @ 6805e7f
... ... @@ -8,6 +8,7 @@
8 8 import com.lyms.platform.common.base.LoginContext;
9 9 import com.lyms.platform.common.constants.ErrorCodeConstants;
10 10 import com.lyms.platform.common.result.BaseListResponse;
  11 +import com.lyms.platform.common.result.BaseObjectResponse;
11 12 import com.lyms.platform.common.result.BaseResponse;
12 13 import com.lyms.platform.common.utils.PropertiesUtils;
13 14 import com.lyms.platform.operate.web.facade.AntExRecordFacade;
14 15  
15 16  
16 17  
... ... @@ -251,19 +252,29 @@
251 252  
252 253  
253 254 //查询初诊接口
  255 + @RequestMapping(value = "/findAntExChuData",method = RequestMethod.GET)
  256 + @ResponseBody
  257 +// @TokenRequired
  258 + public BaseObjectResponse findAntExChuData(@RequestParam("id")String id,
  259 + HttpServletRequest request){
  260 + BaseObjectResponse br = antenatalExaminationFacade.findAntExChu(id);
  261 + return br;
  262 + }
254 263  
  264 +
255 265 /**
256 266 * 查询复诊接口
257 267 * @param id
258 268 * @param request
259 269 * @return
260 270 */
261   - @RequestMapping(method = RequestMethod.GET, value = "/findAntenatalExamination")
262   - @TokenRequired
263   - public BaseResponse findAntenatalExamination(@RequestParam("id")String id,
  271 + @RequestMapping(value = "/findAntenatalExaminationData",method = RequestMethod.GET)
  272 + @ResponseBody
  273 +// @TokenRequired
  274 + public BaseObjectResponse findAntenatalExaminationData(@RequestParam("id")String id,
264 275 HttpServletRequest request){
265 276  
266   - return antExRecordFacade.findAntenatalExamination(id);
  277 + return antenatalExaminationFacade.findAntenatalExamination(id);
267 278 }
268 279  
269 280  
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/MatDeliverController.java View file @ 6805e7f
... ... @@ -330,7 +330,7 @@
330 330  
331 331 @RequestMapping(value = "/findMatDeliverData", method = RequestMethod.GET)
332 332 @ResponseBody
333   - @TokenRequired
  333 +// @TokenRequired
334 334 public BaseObjectResponse findMatDeliverData(@RequestParam("id")String id){
335 335 return matDeliverFacade.findMatDeliverData(id);
336 336 }