fine:()增加TableFieldController返回结果

master
Yueng 2024-08-27 14:13:13 +08:00
parent f8c6ad3029
commit 2fd5db1d75
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ public class TableFieldController {
public Result<List<TableFie>> selectList(
@Validated @RequestBody TableFie tableFie){
return Result.success(
tableFieldService.selectList(tableFie)
tableFieldService.selectList(tableFie),"已同步"
);
}