Commit bacc1714 by jinfeng.wang

fix

parent 05e3b0af
......@@ -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>
......
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment