354798ggg
2023-08-29 fd0c7c174d7b7313aa49061df05350405a3c1bf1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.product.data.sync.service.ide;
 
import com.product.core.exception.BaseException;
 
/**
 * @author: ZhouJie
 * @date: 2021/8/11 16:36
 * @description: 数据同步处理
 */
public interface IViewDataProcessService {
    public void copyViewDataToTable(String aimTable) throws BaseException;
 
    void updateSyncRecord(String tableName, Integer[] add_ids, String updateIds) throws BaseException;
}