代码提交

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
@AllArgsConstructor
@RequestMapping("/contact")
@RequestMapping("/ui/contact")
public class ContactController{
private ContactService contactService;
@ApiOperationSupport(order = 1)

View File

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