Helius
2020-05-29 23c98be26dc3acf72236a5c97b374b00b6e3043f
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;
}