Commit 5a76ae6b4de136bfbc9b3205aa58091442200404

Authored by jiangjiazhi
1 parent 3b2c085ee3

修改体重营养报告

Showing 1 changed file with 2 additions and 12 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/PatientWeightController.java View file @ 5a76ae6
... ... @@ -156,18 +156,8 @@
156 156 */
157 157 @ResponseBody
158 158 @RequestMapping(value = "/last/check", method = RequestMethod.GET)
159   - public void patientLastCheck(String pid,HttpServletResponse response) {
160   - writeJson(response,patientWeightService.lastCheckTime(pid));
161   - }
162   -
163   - /**
164   - * 孕期体重管理曲线
165   - *
166   - * @param pid
167   - * @return
168   - */
169   - public BaseResponse patientReportInfo(String pid) {
170   - return null;
  159 + public BaseResponse patientLastCheck(String pid) {
  160 + return patientWeightService.lastCheckTime(pid);
171 161 }
172 162  
173 163 /**