change minor issue

This commit is contained in:
Kana
2024-01-22 17:06:14 +09:00
parent a53c6b9602
commit ccd2c001b4
5 changed files with 20 additions and 22 deletions

View File

@@ -79,10 +79,8 @@ public class InController {
@PostMapping("/create_process")
@ResponseBody
public int createProcess(InDto dto) {
boolean create = inService.chechAndUpdateOrCreateProcessForCreate(dto);
return 0;
public boolean createProcess(InDto dto) {
return inService.chechAndUpdateOrCreateProcessForCreate(dto);
}
@PostMapping("/read")