许鹏程
2024-08-15 112f25b820aea7b0487197d1516974589d1d9979
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.product.data.service.impl;
 
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
 
/**
 * @Author cheng
 * @Date 2022/12/16 16:23
 * @Desc
 */
public interface IRemoteService {
 
    void saveSyncConnectionConfig(FieldSetEntity fse) throws BaseException;
 
}