Helius
2021-06-11 d745303a1401949f33ff74bd7ece3a2adc9e4ff7
1
2
3
4
5
6
7
8
9
10
11
package com.xcong.excoin.trade;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class TradePlateItem {
    private BigDecimal price;
    private BigDecimal amount;
}