|
|
|
@ -55,6 +55,8 @@ public class WxNursingLogController extends BaseController {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@PostMapping("/add")
|
|
|
|
@PostMapping("/add")
|
|
|
|
public R add(@Validated @RequestBody WxNursingLogReq wxNursingLogReq) {
|
|
|
|
public R add(@Validated @RequestBody WxNursingLogReq wxNursingLogReq) {
|
|
|
|
|
|
|
|
// 防止前端传输数据进来
|
|
|
|
|
|
|
|
wxNursingLogReq.setCompletionPercentage(null);
|
|
|
|
wxNursingLogService.insertWxNursingLog(wxNursingLogReq);
|
|
|
|
wxNursingLogService.insertWxNursingLog(wxNursingLogReq);
|
|
|
|
return R.ok();
|
|
|
|
return R.ok();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|