This commit is contained in:
zfhai 2023-12-03 15:42:01 +08:00
parent a8f6f6f19d
commit 550b6bf276
3 changed files with 6 additions and 0 deletions

View File

@ -5,9 +5,11 @@ import com.bonus.zlpt.common.core.domain.vo.MaDevInfoVo;
import com.bonus.zlpt.home.mapper.MaDevInfoMapper;
import com.bonus.zlpt.home.service.MaDevInfoService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class MaDevInfoServiceImpl implements MaDevInfoService {
@Autowired

View File

@ -4,9 +4,11 @@ import com.bonus.zlpt.common.core.domain.vo.MaDevInfoVo;
import com.bonus.zlpt.home.mapper.MaHotSearchMapper;
import com.bonus.zlpt.home.service.MaHotSearchService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class MaHotSearchServiceImpl implements MaHotSearchService {
@Autowired

View File

@ -6,12 +6,14 @@ import com.bonus.zlpt.home.mapper.MaDevInfoMapper;
import com.bonus.zlpt.home.mapper.MaTypeInfoMapper;
import com.bonus.zlpt.home.service.MaTypeInfoSevice;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@Service
public class MaTypeInfoServiceImpl implements MaTypeInfoSevice {
@Autowired