字典feign

This commit is contained in:
efren
2025-07-24 10:00:16 +08:00
parent c0af8f1ab3
commit 0772d2b3e3
2 changed files with 0 additions and 13 deletions

View File

@ -17,15 +17,6 @@ import java.util.List;
public interface DictClient {
// --------------------------字典接口-----------------------
/**
* 查询字典数据
* @param parentCode 字典父类code
* @param toParentCode 字典父类对应的父类code
* @return 返回结果
*/
@ApiOperation("查询数据集合")
@GetMapping("/v1/dictProject/getDictList")
BaseResponse<List<DictProject>> getDictList(String parentCode, String toParentCode);
/**
* 查询所有字典

View File

@ -10,10 +10,6 @@ import java.util.List;
@Component
public class DictClientFallback implements DictClient {
@Override
public BaseResponse<List<DictProject>> getDictList(String parentCode, String toParentCode) {
return null;
}
@Override
public BaseResponse<List<DictProject>> selectDictList(DictProject dictProject) {