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
| package com.nq.pojo;
|
| import com.baomidou.mybatisplus.annotation.IdType;
| import com.baomidou.mybatisplus.annotation.TableId;
| import lombok.Data;
|
| /**
| * @program: dabaogp
| * @description:币种
| * @create: 2024-08-21 16:19
| **/
| @Data
| public class CurrencyBean {
| @TableId(value = "id",type = IdType.AUTO)
| private Integer id;
| //交易对 示范:btcusdt
| private String sc;
| //交易对显示名称 示范:BTC/USDT
| private String dn;
| //基础币种 示范:BTC
| private String bcdn;
| //计价币种 示范:USDT
| private String qcdn;
| //是否可交易(true.可交易 false.不可交易)
| private Boolean te;
| }
|
|