1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.vci.ubcs.example.controller;
|
| import lombok.AllArgsConstructor;
| import org.springframework.web.bind.annotation.RestController;
|
| /**
| * 测试调用编码系统代码示例的api定义
| * @author ludc
| * @date 2024/2/27 20:34
| */
| @AllArgsConstructor
| @RestController("/pushIntegration")
| public class TestCalledIntegrationController {
|
|
|
|
| }
|
|