Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
AppTag
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
AppTag
Commits
bacc1714
Commit
bacc1714
authored
5 years ago
by
jinfeng.wang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
05e3b0af
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
16 deletions
+6
-16
pom.xml
pom.xml
+0
-7
TagResult.java
src/main/java/com/mobvista/apptag/entity/TagResult.java
+6
-9
No files found.
pom.xml
View file @
bacc1714
...
...
@@ -93,13 +93,6 @@
<artifactId>
spring-aspects
</artifactId>
<version>
5.1.2.RELEASE
</version>
</dependency>
<!--
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>3.10.2</version>
</dependency>
-->
<dependency>
<groupId>
com.google.code.gson
</groupId>
<artifactId>
gson
</artifactId>
...
...
This diff is collapsed.
Click to expand it.
src/main/java/com/mobvista/apptag/entity/TagResult.java
View file @
bacc1714
...
...
@@ -4,9 +4,6 @@ import com.gitee.sunchenbin.mybatis.actable.annotation.Column;
import
com.gitee.sunchenbin.mybatis.actable.annotation.Table
;
import
com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant
;
import
javax.persistence.Entity
;
import
javax.persistence.Id
;
import
javax.persistence.IdClass
;
import
java.io.Serializable
;
import
java.util.Date
;
...
...
@@ -20,22 +17,22 @@ public class TagResult implements Serializable {
private
static
final
long
serialVersionUID
=
1L
;
// APP 包名
@Column
(
name
=
"package_name"
,
type
=
MySqlTypeConstant
.
VARCHAR
,
length
=
255
,
isNull
=
false
)
@Column
(
name
=
"package_name"
,
type
=
MySqlTypeConstant
.
VARCHAR
,
isNull
=
false
)
private
String
packageName
;
// APP 名称
@Column
(
name
=
"app_name"
,
type
=
MySqlTypeConstant
.
VARCHAR
,
length
=
255
,
isNull
=
true
)
@Column
(
name
=
"app_name"
,
type
=
MySqlTypeConstant
.
VARCHAR
)
private
String
appName
;
// 平台:ios,android
@Column
(
name
=
"platform"
,
type
=
MySqlTypeConstant
.
VARCHAR
,
length
=
10
,
isNull
=
true
)
@Column
(
name
=
"platform"
,
type
=
MySqlTypeConstant
.
VARCHAR
,
length
=
10
)
private
String
platform
;
// 标注的标签ID
@Column
(
name
=
"feat_id"
,
type
=
MySqlTypeConstant
.
VARCHAR
,
length
=
255
,
isNull
=
true
)
@Column
(
name
=
"feat_id"
,
type
=
MySqlTypeConstant
.
VARCHAR
)
private
String
featId
;
// 标注的中文全名
@Column
(
name
=
"comment"
,
type
=
MySqlTypeConstant
.
VARCHAR
,
length
=
255
,
isNull
=
true
)
@Column
(
name
=
"comment"
,
type
=
MySqlTypeConstant
.
VARCHAR
)
private
String
comment
;
// 用户ID
@Column
(
name
=
"user_id"
,
type
=
MySqlTypeConstant
.
VARCHAR
,
length
=
255
,
isNull
=
false
)
@Column
(
name
=
"user_id"
,
type
=
MySqlTypeConstant
.
VARCHAR
,
isNull
=
false
)
private
String
userId
;
// 入库时间
@Column
(
name
=
"update_time"
,
type
=
MySqlTypeConstant
.
DATETIME
,
isNull
=
false
)
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment