Skip to content

Commit 693ba49

Browse files
committed
升级 UnitAuto 至 2.6.3;删除已废弃的 Response.java 及相关代码
1 parent 400a6a6 commit 693ba49

File tree

7 files changed

+10
-7
lines changed

7 files changed

+10
-7
lines changed

libs/apijson-orm-4.7.2.jar

-162 KB
Binary file not shown.

libs/apijson-orm-4.8.0.jar

309 KB
Binary file not shown.

libs/unitauto-2.6.0.jar

-81.3 KB
Binary file not shown.

libs/unitauto-2.6.3.jar

83.9 KB
Binary file not shown.
Binary file not shown.

pom.xml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,18 @@
2424
<version>4.0.1</version>
2525
</dependency>
2626

27-
<!-- 可使用 libs 目录的 apijson-orm.jar 来替代,两种方式二选一 -->
2827
<dependency>
28+
<groupId>com.alibaba</groupId>
29+
<artifactId>fastjson</artifactId>
30+
<version>1.2.74</version>
31+
</dependency>
32+
33+
<!-- 可使用 libs 目录的 apijson-orm.jar 来替代,两种方式二选一 -->
34+
<!-- <dependency>
2935
<groupId>com.github.Tencent</groupId>
3036
<artifactId>APIJSON</artifactId>
3137
<version>4.7.2</version>
32-
</dependency>
38+
</dependency> -->
3339

3440
<!-- 数据库 JDBC 驱动 <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< -->
3541
<dependency>
@@ -49,12 +55,12 @@
4955
<dependency>
5056
<groupId>com.github.TommyLemon</groupId>
5157
<artifactId>unitauto-java</artifactId>
52-
<version>2.6.0</version>
58+
<version>2.6.3</version>
5359
</dependency>
5460
<dependency>
5561
<groupId>com.github.TommyLemon</groupId>
5662
<artifactId>unitauto-jar</artifactId>
57-
<version>2.6.1</version>
63+
<version>2.6.3</version>
5864
</dependency>
5965
<!-- 单元测试:可使用 libs 目录的 unitauto-java.jar 和 unitauto-jar.jar 来替代,两种方式二选一 >>>>>>>>> -->
6066

src/main/java/apijson/framework/APIJSONConstant.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
import apijson.orm.model.PgAttribute;
2626
import apijson.orm.model.PgClass;
2727
import apijson.orm.model.Request;
28-
import apijson.orm.model.Response;
2928
import apijson.orm.model.SysColumn;
3029
import apijson.orm.model.SysTable;
3130
import apijson.orm.model.Table;
@@ -60,7 +59,6 @@ public class APIJSONConstant {
6059
public static final String FUNCTION_;
6160
public static final String PG_ATTRIBUTE_;
6261
public static final String PG_CLASS_;
63-
public static final String RESPONSE_;
6462
public static final String REQUEST_;
6563
public static final String SYS_COLUMN_;
6664
public static final String SYS_TABLE_;
@@ -78,7 +76,6 @@ public class APIJSONConstant {
7876
PG_ATTRIBUTE_ = PgAttribute.class.getSimpleName();
7977
PG_CLASS_ = PgClass.class.getSimpleName();
8078
REQUEST_ = Request.class.getSimpleName();
81-
RESPONSE_ = Response.class.getSimpleName();
8279
SYS_COLUMN_ = SysColumn.class.getSimpleName();
8380
SYS_TABLE_ = SysTable.class.getSimpleName();
8481
TABLE_ = Table.class.getSimpleName();

0 commit comments

Comments
 (0)