啊鑫
2025-02-12 076dd23c615e66b2c495bb123aadf041940f03b2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.gs.xky;
 
import com.gs.xky.service.XkyService;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
 
import java.io.IOException;
 
@SpringBootTest
class XkyApplicationTests {
 
 
    @Autowired
    private XkyService xkyService;
 
    @Test
    void contextLoads() throws IOException {
 
        xkyService.GetSaveDetail();
    }
 
}