CZT
2023-08-18 5825e2503ee36db5376ca5f1374fae152cf6aa1a
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
package com.fzzy.api.service;
 
import com.fzzy.api.data.ApiParam;
import org.springframework.stereotype.Component;
 
 
/**
 * 数据同步 行政管理 - 接口定义
 */
@Component
public interface SyncService14 {
 
 
    /**
     * 协议定义
     *
     * @return
     */
    String getProtocol();
 
 
    /**
     * 数据同步
     */
    public void syncData(ApiParam param);
 
}