Helius
2020-07-03 0fabc4bdd5add597e9c29e966005602e11e06fca
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.xcong.excoin.modules.member.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.xcong.excoin.common.system.base.BaseEntity;
 
import lombok.Data;
 
/**
 * 会员自选币种 
 */
@Data
@TableName("member_select_symbols")
public class MemberSelectSymbolsEntity extends BaseEntity{
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    /**
     * 会员ID
     */
    private long memberId;
    /**
     * 币种
     */
    private String symbol;
 
}