28 lines
835 B
Java
28 lines
835 B
Java
package org.jeecg.modules.test.service.impl;
|
|
|
|
import org.jeecg.modules.test.entity.TestSonTable;
|
|
import org.jeecg.modules.test.mapper.TestSonTableMapper;
|
|
import org.jeecg.modules.test.service.ITestSonTableService;
|
|
import org.springframework.stereotype.Service;
|
|
import java.util.List;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
/**
|
|
* @Description: test
|
|
* @Author: jeecg-boot
|
|
* @Date: 2026-04-03
|
|
* @Version: V1.0
|
|
*/
|
|
@Service
|
|
public class TestSonTableServiceImpl extends ServiceImpl<TestSonTableMapper, TestSonTable> implements ITestSonTableService {
|
|
|
|
@Autowired
|
|
private TestSonTableMapper testSonTableMapper;
|
|
|
|
@Override
|
|
public List<TestSonTable> selectByMainId(String mainId) {
|
|
return testSonTableMapper.selectByMainId(mainId);
|
|
}
|
|
}
|