create project

This commit is contained in:
2025-09-11 07:28:13 +08:00
parent 280c76c6a3
commit d0fb11bb62
16 changed files with 1207 additions and 0 deletions

6
db2java-core/README.md Normal file
View File

@@ -0,0 +1,6 @@
db2java-core
---
>db2java-core是核心功能模块主要功能是把数据库表生成对应的java对象。
<br/>支持的数据库MySQLPostgreSQLOracleSQL ServerDB2
<br/>支持的生成对象EntityMapperMybatisJPA

17
db2java-core/pom.xml Normal file
View File

@@ -0,0 +1,17 @@
<?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>
<groupId>top.yexuejc</groupId>
<artifactId>db2java-core</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>24</maven.compiler.source>
<maven.compiler.target>24</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>