Helius
2020-06-29 cf3fbd17f3eaa432b38b637fe08534e80c06fc95
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;
 
}