添加字段和表

master
Cui YongXing 2024-08-28 19:06:32 +08:00
parent c54f3add99
commit 208b640da5
2 changed files with 5 additions and 1 deletions

View File

@ -41,5 +41,9 @@ public class TaskInfoResp {
*
*/
private String remark;
/**
*
*/
private String json;
}

View File

@ -102,7 +102,7 @@ public class TaskInfoController {
wrapper.eq("id",id);
wrapper.set("json",json);
taskInfoService.update(wrapper);
return Result.success();
return Result.success(null,"保存成功");
}