removeByDsId 方法dsId 类型修改为Long

This commit is contained in:
Hooper 2022-01-19 03:40:04 +00:00 committed by Gitee
parent be02587e61
commit 5071e53b2b
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -59,6 +59,6 @@ public interface GenDatasourceConfService extends IService<GenDatasourceConf> {
* @param dsId 数据源ID
* @return
*/
Boolean removeByDsId(Integer dsId);
Boolean removeByDsId(Long dsId);
}