|
@@ -7,15 +7,16 @@ import com.boman.report.service.ITableService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
+import javax.annotation.Resource;
|
|
|
import java.util.List;
|
|
|
import java.util.Set;
|
|
|
|
|
|
@Service
|
|
|
public class TableServiceImpl implements ITableService {
|
|
|
|
|
|
- @Autowired
|
|
|
+ @Resource
|
|
|
private TableMapper mapper;
|
|
|
- @Autowired
|
|
|
+ @Resource
|
|
|
private IgnoreTable ignoreTable;
|
|
|
|
|
|
|