| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.lf.server.entity.all.ResponseMsg; |
| | | import com.lf.server.entity.ctrl.IdNameEntity; |
| | | import com.lf.server.entity.ctrl.TabEntity; |
| | | import com.lf.server.entity.data.DictEntity; |
| | |
| | | } |
| | | |
| | | @Override |
| | | public List<DictEntity> selectFields(String name) { |
| | | return baseQueryMapper.selectFields(name); |
| | | public List<DictEntity> selectFields(String ns, String tab) { |
| | | return baseQueryMapper.selectFields(ns, tab); |
| | | } |
| | | |
| | | @Override |
| | | public List<DomainEntity> selectDomains(String name) { |
| | | return baseQueryMapper.selectDomains(name); |
| | | public List<DomainEntity> selectDomains(String ns, String tab) { |
| | | return baseQueryMapper.selectDomains(ns, tab); |
| | | } |
| | | } |