|
@ -270,14 +270,6 @@ public class DoctorFollowUpController extends BaseController {
|
|
|
@RequestParam(value = "id", required = true) String id) {
|
|
|
try {
|
|
|
Map<String, String> response = followUpService.getFollowup(id);
|
|
|
|
|
|
try {
|
|
|
String sql = "UPDATE `wlyy`.`wlyy_followup` SET `doctor_read_status`='1' WHERE (`id`='"+id+"') ";
|
|
|
jdbcTemplate.update(sql);
|
|
|
}catch (Exception e){
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
|
|
|
return write(200, "获取随访信息成功!", "data", response);
|
|
|
} catch (ServiceException se) {
|
|
|
return write(-1,se.getMessage());
|