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;
}