czt
2025-09-16 db74943b46ffb5245477894f394c368cc04f93e7
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 SyncService13 {
 
 
    /**
     * 协议定义
     *
     * @return
     */
    String getProtocol();
 
 
    /**
     * 数据同步
     */
    public void syncData(ApiParam param);
 
}