| | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.dsh.other.entity.SiteLock; |
| | | import com.dsh.other.mapper.SiteLockMapper; |
| | | import com.dsh.other.model.dto.siteDto.TSiteLockDTO; |
| | | import com.dsh.other.service.ISiteLockService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | |
| | | */ |
| | | @Service |
| | | public class SiteLockServiceImpl extends ServiceImpl<SiteLockMapper, SiteLock> implements ISiteLockService { |
| | | @Autowired |
| | | private SiteLockMapper siteLockMapper; |
| | | |
| | | @Override |
| | | public List<TSiteLockDTO> getListById(Integer id) { |
| | | return siteLockMapper.getListById(id); |
| | | } |
| | | |
| | | } |