1234567891011121314151617181920 |
- package com.xt.dsp.serviceImpl;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import com.xt.dsp.mappers.DataSourceBeanMapper;
- import com.xt.dsp.model.DataSourceBean;
- import com.xt.dsp.service.DataSourceService;
- @Service
- public class DataSourceServiceImpl implements DataSourceService {
- @Autowired
- private DataSourceBeanMapper mapper;
- @Override
- public DataSourceBean selectByPrimaryKey(String id) {
- return mapper.selectByPrimaryKey(id);
- }
- }
|