From 05c74ca131add20dbcf23dc109e63c21b3e2be29 Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Wed, 24 Feb 2021 18:11:57 +0800
Subject: [PATCH] Merge branch 'whole_new_trc20' into whole_new
---
src/main/java/com/xcong/excoin/modules/documentary/entity/FollowTraderLabelEntity.java | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/main/java/com/xcong/excoin/modules/documentary/entity/FollowTraderLabelEntity.java b/src/main/java/com/xcong/excoin/modules/documentary/entity/FollowTraderLabelEntity.java
index 57a7e9a..baacee7 100644
--- a/src/main/java/com/xcong/excoin/modules/documentary/entity/FollowTraderLabelEntity.java
+++ b/src/main/java/com/xcong/excoin/modules/documentary/entity/FollowTraderLabelEntity.java
@@ -1,21 +1,23 @@
package com.xcong.excoin.modules.documentary.entity;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.xcong.excoin.common.system.base.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
-@EqualsAndHashCode(callSuper = true)
@Data
-@TableName("follow_follower_profit")
-public class FollowTraderLabelEntity extends BaseEntity{
+@TableName("follow_trader_label")
+public class FollowTraderLabelEntity{
/**
*
*/
private static final long serialVersionUID = 1L;
-
+ @TableId(value = "id",type = IdType.AUTO)
+ private Long id;
/**
* 标签
*/
--
Gitblit v1.9.1