package com.gkhy.safePlatform.goalManage.service.baseService.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.gkhy.safePlatform.goalManage.entity.TestTable;
|
import com.gkhy.safePlatform.goalManage.repository.TestTableRepository;
|
import com.gkhy.safePlatform.goalManage.service.baseService.TestTableService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
@Service("testTableService")
|
public class TestTableServiceImpl extends ServiceImpl<TestTableRepository, TestTable> implements TestTableService {
|
|
@Autowired
|
private TestTableRepository testTableRepository;
|
}
|