package com.product.data.service.impl; import com.product.core.entity.FieldSetEntity; import com.product.core.exception.BaseException; /** * @Author cheng * @Date 2024/8/13 18:20 * @Desc 数据源配置 */ public interface IDataSourceConfigService { void save(FieldSetEntity fse) throws BaseException; void delete(FieldSetEntity fse) throws BaseException; }