package com.whyc.service;
|
|
import com.whyc.mapper.FBOTestDataMapper;
|
import com.whyc.pojo.FBOTestData;
|
import org.springframework.stereotype.Service;
|
|
import javax.annotation.Resource;
|
import java.util.List;
|
|
@Service
|
public class FBOTestDataService {
|
|
@Resource
|
private FBOTestDataMapper mapper;
|
|
public List<FBOTestData> getList(int battGroupId, int testRecordCount) {
|
return mapper.getList(battGroupId,testRecordCount);
|
}
|
}
|