CZT
2023-12-27 2fe99f0d876377f7d20cb922c83d31cfbf766020
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
28
29
30
31
32
package com.fzzy.async.shyz;
 
import com.fzzy.api.data.ApiParam;
import com.fzzy.api.data.SyncProtocol;
import com.fzzy.api.service.SyncService14;
 
import org.springframework.stereotype.Component;
 
/**
 * @Desc: 上海嘉定粮库接口模式对接,将数据同步到通用数据表中
 *
 * @author: Andy
 * @update-time: 2022/10/9
 *
 */
@Component(ShYzSyncService14.BEAN_ID)
public class ShYzSyncService14 implements SyncService14 {
 
    public static final String BEAN_ID = "shyz.syncService14";
 
 
    @Override
    public String getProtocol() {
        return SyncProtocol.FZZY_V35_SHYZ.getCode();
    }
 
    @Override
    public void syncData(ApiParam param) {
 
    }
 
}