中国算力平台算力登记系统2.0
yanzhaofeige
2024-09-30 0f03e47899d7fd52ab5c7ad11a3bc5d4eec413cb
init
2 files modified
4 files added
71 ■■■■■ changed files
cpzidc-admin/pom.xml 6 ●●●●● patch | view | raw | blame | history
cpzidc-admin/src/test/java/com/odcc/cpzidc/test/IsctTest.java 30 ●●●●● patch | view | raw | blame | history
cpzidc-bis/pom.xml 20 ●●●●● patch | view | raw | blame | history
cpzidc-bis/src/main/java/com/odcc/cpzidc/Main.java 7 ●●●●● patch | view | raw | blame | history
cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/Main.java 7 ●●●●● patch | view | raw | blame | history
pom.xml 1 ●●●● patch | view | raw | blame | history
cpzidc-admin/pom.xml
@@ -64,6 +64,12 @@
            <groupId>com.odcc.cpzidc</groupId>
            <artifactId>cpzidc-generator</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-test</artifactId>
            <version>2.7.6</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
cpzidc-admin/src/test/java/com/odcc/cpzidc/test/IsctTest.java
New file
@@ -0,0 +1,30 @@
package com.odcc.cpzidc.test;
import com.odcc.cpzidc.common.core.domain.entity.SysUser;
import com.odcc.cpzidc.system.service.ISysUserService;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
/**
 * 绘制海报本地测试
 *
 * @author quaint
 * @date 21 February 2020
 * @since 1.0
 */
@RunWith(SpringRunner.class)
@SpringBootTest
public class IsctTest {
    @Autowired
    private ISysUserService userService;
    @Test
    public void test01() {
        SysUser sysUser = userService.selectUserById(1l);
        System.err.println(sysUser.getNickName());
    }
}
cpzidc-bis/pom.xml
New file
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.odcc.cpzidc</groupId>
        <artifactId>cpzidc</artifactId>
        <version>3.8.8</version>
    </parent>
    <artifactId>cpzidc-bis</artifactId>
    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
</project>
cpzidc-bis/src/main/java/com/odcc/cpzidc/Main.java
New file
@@ -0,0 +1,7 @@
package com.odcc.cpzidc;
public class Main {
    public static void main(String[] args) {
        System.out.println("Hello world!");
    }
}
cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/Main.java
New file
@@ -0,0 +1,7 @@
package com.odcc.cpzidc.bis;
public class Main {
    public static void main(String[] args) {
        System.out.println("Hello world!");
    }
}
pom.xml
@@ -205,6 +205,7 @@
        <module>cpzidc-quartz</module>
        <module>cpzidc-generator</module>
        <module>cpzidc-common</module>
        <module>cpzidc-bis</module>
    </modules>
    <packaging>pom</packaging>