From 143d9d32ee994ff4ec53bb3841b05f19900502a1 Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Thu, 28 Jan 2021 16:44:03 +0800
Subject: [PATCH] modify
---
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