|
@ -28,8 +28,8 @@ public class BlockChainProjectController { |
|
|
*/ |
|
|
*/ |
|
|
@PostMapping("create") |
|
|
@PostMapping("create") |
|
|
public Result blockChainCreateProject(@RequestBody BlockChainCreateProjectFormDTO input) { |
|
|
public Result blockChainCreateProject(@RequestBody BlockChainCreateProjectFormDTO input) { |
|
|
ValidatorUtils.validateEntity(input); |
|
|
//ValidatorUtils.validateEntity(input);
|
|
|
blockChainProjectService.blockChainCreateProject(input); |
|
|
//blockChainProjectService.blockChainCreateProject(input);
|
|
|
return new Result(); |
|
|
return new Result(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -40,8 +40,8 @@ public class BlockChainProjectController { |
|
|
*/ |
|
|
*/ |
|
|
@PostMapping("process") |
|
|
@PostMapping("process") |
|
|
public Result blockChainProcessProject(@RequestBody BlockChainProcessProjectFormDTO input) { |
|
|
public Result blockChainProcessProject(@RequestBody BlockChainProcessProjectFormDTO input) { |
|
|
ValidatorUtils.validateEntity(input); |
|
|
//ValidatorUtils.validateEntity(input);
|
|
|
blockChainProjectService.blockChainProcessProject(input); |
|
|
//blockChainProjectService.blockChainProcessProject(input);
|
|
|
return new Result(); |
|
|
return new Result(); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|