feat: 新增动态数据源单元测试

This commit is contained in:
郝先瑞
2023-04-24 08:03:55 +08:00
parent cb9d90f3d6
commit cbd1621935
4 changed files with 75 additions and 21 deletions

View File

@@ -65,4 +65,13 @@ public interface SysDictService extends IService<SysDict> {
* @return
*/
List<Option> listDictOptions(String typeCode);
/**
* 修改字典类型编码
*
* @param originalTypeCode
* @param newTypeCode
* @return
*/
boolean updateDictTypeCode(String originalTypeCode, String newTypeCode);
}