| | |
| | | package com.lf.server.service.data; |
| | | |
| | | import com.lf.server.entity.ctrl.TabEntity; |
| | | import com.lf.server.entity.data.DomainEntity; |
| | | import com.lf.server.helper.StringHelper; |
| | | import com.lf.server.mapper.data.DomainMapper; |
| | |
| | | } |
| | | |
| | | @Override |
| | | public List<TabEntity> selectDomainTabs() { |
| | | return domainMapper.selectDomainTabs(); |
| | | } |
| | | |
| | | @Override |
| | | public List<String> selectDomainNames(String ns, String tab) { |
| | | return domainMapper.selectDomainNames(ns, tab); |
| | | } |
| | | |
| | | @Override |
| | | public Integer insert(DomainEntity entity) { |
| | | return domainMapper.insert(entity); |
| | | } |