Commit d564acc19563de773e6af960011d905ab0e728ae

Authored by liquanyu
1 parent 2a2ef08b37

update

Showing 1 changed file with 16 additions and 16 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/MeasureInfoController.java View file @ d564acc
... ... @@ -159,14 +159,14 @@
159 159 @RequestParam(value = "hospitalId", required = true) String hospitalId,
160 160 HttpServletRequest request
161 161 ) {
162   - if ("216".equals(hospitalId))
163   - {
164   - try {
165   - Thread.sleep(4000);
166   - } catch (InterruptedException e) {
167   - e.printStackTrace();
168   - }
169   - }
  162 +// if ("216".equals(hospitalId))
  163 +// {
  164 +// try {
  165 +// Thread.sleep(4000);
  166 +// } catch (InterruptedException e) {
  167 +// e.printStackTrace();
  168 +// }
  169 +// }
170 170 return measureInfoFacade.getNutritionPatientInfo(certType, certNo, hospitalId);
171 171 }
172 172  
... ... @@ -182,14 +182,14 @@
182 182 public BaseObjectResponse addNutritionInfo(@RequestBody NutritionInfoRequest nutritionInfoRequest,
183 183 HttpServletRequest request
184 184 ) {
185   - if ("216".equals(nutritionInfoRequest.getHospitalId()))
186   - {
187   - try {
188   - Thread.sleep(4000);
189   - } catch (InterruptedException e) {
190   - e.printStackTrace();
191   - }
192   - }
  185 +// if ("216".equals(nutritionInfoRequest.getHospitalId()))
  186 +// {
  187 +// try {
  188 +// Thread.sleep(4000);
  189 +// } catch (InterruptedException e) {
  190 +// e.printStackTrace();
  191 +// }
  192 +// }
193 193 return measureInfoFacade.addNutritionInfo(nutritionInfoRequest);
194 194 }
195 195