代码提交

This commit is contained in:
glj 2023-04-10 10:39:16 +08:00
parent 1abb487a79
commit 08d2b53896
2 changed files with 2 additions and 1 deletions

View File

@ -21,7 +21,7 @@ import java.util.Arrays;
@RestController @RestController
@AllArgsConstructor @AllArgsConstructor
@RequestMapping("/contact") @RequestMapping("/ui/contact")
public class ContactController{ public class ContactController{
private ContactService contactService; private ContactService contactService;
@ApiOperationSupport(order = 1) @ApiOperationSupport(order = 1)

View File

@ -60,6 +60,7 @@ public class ToolController{
Tool detail = toolService.getById(id); Tool detail = toolService.getById(id);
return R.data(detail); return R.data(detail);
} }
@ApiOperationSupport(order = 6) @ApiOperationSupport(order = 6)
@ApiOperation(value = "提交", notes = "传入Tool") @ApiOperation(value = "提交", notes = "传入Tool")
@PostMapping("/submit") @PostMapping("/submit")