Helius
2021-04-23 9beb428f807920b0dd646edbed822313c47961c6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.xcong.excoin.modules.contract.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
@Data
@TableName("follow_trader_label")
public class FollowTraderLabelEntity{
    
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    
    @TableId(value = "id",type = IdType.AUTO)
    private Long id;
    /**
     * 标签
     */
    private String labels;
 
}