Merge remote-tracking branch 'origin/master'

This commit is contained in:
sungsu
2024-01-22 18:11:11 +09:00
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")