Commit 9798994a authored by liuxun's avatar liuxun

merge

parent 0a5cb8b8
......@@ -247,6 +247,20 @@ public class BuildBedController {
}
/**
* 终止录入
*/
@PostMapping("/saveStopTime")
public Result<Boolean> saveStopTime(@RequestParam Long srvSendId,@RequestParam Date stopTime){
ChSrvSend chSrvSend = sendService.getById(srvSendId);
if(chSrvSend == null){
return Result.failed("提交失败,服务分配记录不存在");
}
chSrvSend.setStopTime(stopTime);
sendService.updateById(chSrvSend);
return Result.success(true);
}
/**
* 失能人员信息修改申请详情页搜索失能人员接口
*
* @param pageNum 翻页参数
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment