File tree Expand file tree Collapse file tree 7 files changed +10
-7
lines changed
src/main/java/apijson/framework Expand file tree Collapse file tree 7 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 24
24
<version >4.0.1</version >
25
25
</dependency >
26
26
27
- <!-- 可使用 libs 目录的 apijson-orm.jar 来替代,两种方式二选一 -->
28
27
<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>
29
35
<groupId>com.github.Tencent</groupId>
30
36
<artifactId>APIJSON</artifactId>
31
37
<version>4.7.2</version>
32
- </dependency >
38
+ </dependency> -->
33
39
34
40
<!-- 数据库 JDBC 驱动 <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< -->
35
41
<dependency >
49
55
<dependency >
50
56
<groupId >com.github.TommyLemon</groupId >
51
57
<artifactId >unitauto-java</artifactId >
52
- <version >2.6.0 </version >
58
+ <version >2.6.3 </version >
53
59
</dependency >
54
60
<dependency >
55
61
<groupId >com.github.TommyLemon</groupId >
56
62
<artifactId >unitauto-jar</artifactId >
57
- <version >2.6.1 </version >
63
+ <version >2.6.3 </version >
58
64
</dependency >
59
65
<!-- 单元测试:可使用 libs 目录的 unitauto-java.jar 和 unitauto-jar.jar 来替代,两种方式二选一 >>>>>>>>> -->
60
66
Original file line number Diff line number Diff line change 25
25
import apijson .orm .model .PgAttribute ;
26
26
import apijson .orm .model .PgClass ;
27
27
import apijson .orm .model .Request ;
28
- import apijson .orm .model .Response ;
29
28
import apijson .orm .model .SysColumn ;
30
29
import apijson .orm .model .SysTable ;
31
30
import apijson .orm .model .Table ;
@@ -60,7 +59,6 @@ public class APIJSONConstant {
60
59
public static final String FUNCTION_ ;
61
60
public static final String PG_ATTRIBUTE_ ;
62
61
public static final String PG_CLASS_ ;
63
- public static final String RESPONSE_ ;
64
62
public static final String REQUEST_ ;
65
63
public static final String SYS_COLUMN_ ;
66
64
public static final String SYS_TABLE_ ;
@@ -78,7 +76,6 @@ public class APIJSONConstant {
78
76
PG_ATTRIBUTE_ = PgAttribute .class .getSimpleName ();
79
77
PG_CLASS_ = PgClass .class .getSimpleName ();
80
78
REQUEST_ = Request .class .getSimpleName ();
81
- RESPONSE_ = Response .class .getSimpleName ();
82
79
SYS_COLUMN_ = SysColumn .class .getSimpleName ();
83
80
SYS_TABLE_ = SysTable .class .getSimpleName ();
84
81
TABLE_ = Table .class .getSimpleName ();
You can’t perform that action at this time.
0 commit comments