czt
2025-01-06 d178c8574a4c3c9d436f5188ddfeff95ffe5f65c
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
33
package com.fzzy.async.shyz;
 
import com.fzzy.api.data.ApiParam;
import com.fzzy.api.data.SyncProtocol;
import com.fzzy.api.service.SyncService13;
 
import org.springframework.stereotype.Component;
 
/**
 * @Desc: 上海嘉定粮库接口模式对接,将数据同步到通用数据表中
 *
 * @author: Andy
 * @update-time: 2022/10/9
 *
 */
@Component(ShYzSyncService13.BEAN_ID)
public class ShYzSyncService13 implements SyncService13 {
 
    public static final String BEAN_ID = "shyz.syncService13";
 
 
    @Override
    public String getProtocol() {
        return SyncProtocol.FZZY_V35_SHYZ.getCode();
    }
 
    @Override
    public void syncData(ApiParam param) {
 
 
    }
 
}