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