zj
2024-06-03 3603ecb207f7e712c635f19531e05fac4d19e53f
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
33
34
35
36
package project.data.job;
 
import project.item.model.Item;
 
public class HandleObject {
 
    public static String type_depth = "depth";
    
    public static String type_trade = "trade";
    
    /**
     */
    private String type;
    
    private Item item;
 
    /**
     * K线图的参数line
     */
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public Item getItem() {
        return item;
    }
 
    public void setItem(Item item) {
        this.item = item;
    }
 
}