lyfO_o
2022-07-01 f8c25d1fab78aa4e0a6bdb10f91e61698af434c4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
}