|
|
@ -56,6 +56,11 @@ public class IcFollowUpRecordController { |
|
|
|
return new Result<PageData<IcFollowUpRecordDTO>>().ok(page); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 随访记录,查看详情 |
|
|
|
* @param id |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
@RequestMapping(value = "{id}",method = {RequestMethod.POST,RequestMethod.GET}) |
|
|
|
public Result<IcFollowUpRecordDTO> get(@PathVariable("id") String id){ |
|
|
|
IcFollowUpRecordDTO data = icFollowUpRecordService.get(id); |
|
|
@ -86,6 +91,11 @@ public class IcFollowUpRecordController { |
|
|
|
return new Result(); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 随访记录删除 |
|
|
|
* @param ids |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
@PostMapping("delete") |
|
|
|
public Result delete(@RequestBody String[] ids){ |
|
|
|
//效验数据
|
|
|
|