1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.xcong.excoin.modules.platform.entity;
|
| import java.math.BigDecimal;
|
| import com.baomidou.mybatisplus.annotation.TableName;
|
| import lombok.Data;
| @Data
| @TableName("platform_cny_usdt_exchange")
| public class PlatformCnyUsdtExchangeEntity{
|
| private Long id;
|
| /**
| * 兑换比例
| */
| private BigDecimal value;
| /**
| * 增减偏量
| */
| private BigDecimal diff;
| }
|
|