1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| 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;
| }
|
|