16 lines
386 B
Java
16 lines
386 B
Java
package com.example.bwietext080726;
|
||
|
||
import org.junit.jupiter.api.Test;
|
||
import org.springframework.boot.test.context.SpringBootTest;
|
||
|
||
@SpringBootTest
|
||
class BwieText080726ApplicationTests {
|
||
|
||
@Test
|
||
void contextLoads() {
|
||
System.out.println("表bill里的数据");
|
||
System.out.println("序号:1,账单金额:998,账单时间:2020-10-21 09:45:45");
|
||
}
|
||
|
||
}
|