czt
2025-06-05 8460849733838c9e84d1016c51f5a0e6875d0a78
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.fzzy.igds.dzhwk.v1;
 
import com.fzzy.igds.dzhwk.v1.dto.ApiV1ReqDto;
 
/**
 * @Description 数据接口V1解析分发
 * @Author CZT
 * @Date 2025/6/04 16:10
 */
public interface ApiV1Service {
 
    /**
     * 获取接口编码
     * @return
     */
    public String getInterfaceId();
 
    /**
     * 解析数据
     * @param dataStr
     */
    public void analysis(String dataStr, ApiV1ReqDto reqDto);
}