Browse Source

修改:

1.因为错误的分之合并,将区块链分支合并到了线上分支,暂时屏蔽掉具体处理,只接受参数
dev_shibei_match
wangxianzhang 4 years ago
parent
commit
ccdbe0818e
  1. 8
      epmet-module/epmet-third/epmet-third-server/src/main/java/com/epmet/controller/BlockChainProjectController.java

8
epmet-module/epmet-third/epmet-third-server/src/main/java/com/epmet/controller/BlockChainProjectController.java

@ -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();
} }
} }

Loading…
Cancel
Save