资源库前端展示成果名称

This commit is contained in:
13036795865 2025-05-14 19:21:00 +08:00
parent 31da182157
commit 06b334e782
2 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1,18 @@
package com.microservices.dms.behaviorImage.controller;
import io.swagger.annotations.Api;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* 区块链Controller
*
* @author microservices
* @date 2025-04-17
*/
@RestController
@RequestMapping("/blockChain")
@Api(tags = "数据产权子系统")
public class BlockChainController {
//查询所有上链的项目select * from projects where use_blockchain='1'
}

View File

@ -10,7 +10,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
@Api(tags = "数据管理体系-人才推荐接口") @Api(tags = "数据管理体系-推荐接口")
@RestController @RestController
@RequestMapping("/talentReferral") @RequestMapping("/talentReferral")
@RequiredArgsConstructor @RequiredArgsConstructor