Commit ba2f73018a7e388613cbc7978e415e98b9b613e8
1 parent
ef29e61f
Exists in
yxb_dev
and in
2 other branches
no message
Showing
3 changed files
with
4 additions
and
3 deletions
Show diff stats
.gitignore
app/libs/processor.jar
No preview for this file type
app/src/main/java/com/shunzhi/parent/annotation/VersionTest.java
... | ... | @@ -3,12 +3,12 @@ package com.shunzhi.parent.annotation; |
3 | 3 | import org.shunzhi.processorlibs.AddColumn; |
4 | 4 | |
5 | 5 | public class VersionTest { |
6 | - @AddColumn(version = 3, tableName = "test", type = "String", isDebug = true) | |
6 | + @AddColumn(version = 3, tableName = "test", type = "String") | |
7 | 7 | private String name; |
8 | 8 | |
9 | - @AddColumn(version = 3, tableName = "test", type = "Integer", isDebug = true) | |
9 | + @AddColumn(version = 3, tableName = "test", type = "Integer") | |
10 | 10 | Integer age; |
11 | - @AddColumn(version = 3, tableName = "test", type = "Boolean", isDebug = true) | |
11 | + @AddColumn(version = 3, tableName = "test", type = "Boolean") | |
12 | 12 | Boolean area; |
13 | 13 | |
14 | 14 | } | ... | ... |