1
zj
2024-06-13 a4662cc65a02f258062bf6cc392ceb1017db9292
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
28
29
30
31
32
/**
  * Copyright 2023 bejson.com 
  */
package com.yami.trading.huobi.task.domain;
 
import java.util.List;
 
/**
 * Auto-generated: 2023-10-02 22:7:45
 *
 * @author bejson.com (i@bejson.com)
 * @website http://www.bejson.com/java2pojo/
 */
public class TradeViewData {
 
    private int totalCount;
    private List<TradeViewDataItem> data;
    public void setTotalCount(int totalCount) {
         this.totalCount = totalCount;
     }
     public int getTotalCount() {
         return totalCount;
     }
 
    public void setData(List<TradeViewDataItem> data) {
         this.data = data;
     }
     public List<TradeViewDataItem> getData() {
         return data;
     }
 
}