CZT
2023-10-23 462bfe45f2bd766330db2aa9f4a5abbaa086853b
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 SyncService12 {
 
 
    /**
     * 协议定义
     *
     * @return
     */
    String getProtocol();
 
 
    /**
     * 数据同步
     */
    public void syncData(ApiParam param);
 
}