| | |
| | | import com.job.zsc.mapper.AnalysisDataMapper; |
| | | import com.job.zsc.pojo.AnalysisData; |
| | | import com.job.zsc.service.AnalysisDataService; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Slf4j |
| | | @Service |
| | | public class AnalysisDataServiceImpl implements AnalysisDataService { |
| | | @Autowired |
| | |
| | | } |
| | | |
| | | @Override |
| | | public Integer search(String shopname, String value ,String begin, String end) { |
| | | Integer count=analysisDataMapper.search(shopname,value,begin,end); |
| | | return count; |
| | | public List<AnalysisData> search(String shopname, String value ,String begin, String end) { |
| | | List<AnalysisData> list=analysisDataMapper.search(shopname,value,begin,end); |
| | | return list; |
| | | } |
| | | |
| | | |