ludc
2024-05-17 58e1c4e2bdc8e4f8b647d7c2b9e5e5656a00b445
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);
    }
}