xiejun
2025-01-23 618caa4a9f759fbc871085eca90791e869151bdc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.vci.ubcs.example;
 
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
 
/** 集成推送,被调代码示例
 * @author ludc
 * @date 2024/2/27 19:40
 */
@SpringBootApplication
public class ExampleIntgraPushCallApplication {
 
    public static void main(String[] args) {
        SpringApplication.run(ExampleIntgraPushCallApplication.class, args);
    }
}