zj
2025-03-07 5be80b796dd5885604aeab891e410b994b1d4dbe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package project.data.websocket.service.huobi.parser;
 
import java.util.List;
 
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
 
public interface HuobiModelParser<T> {
 
    T parse(JSONObject json);
 
    T parse(JSONArray json);
 
    List<T> parseArray(JSONArray jsonArray);
 
}