|
@@ -81,12 +81,12 @@ public class DictBizServiceImpl extends ServiceImpl<DictBizMapper, DictBiz> impl
|
|
|
|
|
|
@Override
|
|
|
public List<DictBiz> getList(String code) {
|
|
|
- return baseMapper.getList(code,null);
|
|
|
+ return baseMapper.getList(null,code,null);
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public List<DictBiz> getList(String code, Integer type) {
|
|
|
- return baseMapper.getList(code,type);
|
|
|
+ public List<DictBiz> getList(String parentId,String code, Integer type) {
|
|
|
+ return baseMapper.getList(parentId,code,type);
|
|
|
}
|
|
|
|
|
|
@Override
|