Authored by wangnan9279

图库

  1 +package com.yoho.search.restapi.others;
  2 +
  3 +import org.springframework.stereotype.Controller;
  4 +
  5 +/**
  6 + * @Author: wangnan
  7 + * @Date: Created in 2018/4/16
  8 + */
  9 +@Controller
  10 +public class ImageRepertoryController {
  11 +}
@@ -10,9 +10,6 @@ import java.util.Map; @@ -10,9 +10,6 @@ import java.util.Map;
10 public interface IHelperService { 10 public interface IHelperService {
11 /** 11 /**
12 * 搜索帮助列表 12 * 搜索帮助列表
13 - *  
14 - * @param paramMap  
15 - * @return  
16 */ 13 */
17 SearchApiResult helper(Map<String, String> paramMap); 14 SearchApiResult helper(Map<String, String> paramMap);
18 } 15 }
  1 +package com.yoho.search.service.service;
  2 +
  3 +import com.yoho.search.models.SearchApiResult;
  4 +import org.springframework.stereotype.Service;
  5 +
  6 +import java.util.Map;
  7 +
  8 +/**
  9 + * 图库服务
  10 + * @Author: wangnan
  11 + * @Date: Created in 2018/4/16
  12 + */
  13 +@Service
  14 +public interface IImageRepertoryService {
  15 +
  16 + /**
  17 + * 搜索图库列表
  18 + */
  19 + SearchApiResult searchImageRepertoryList(Map<String, String> paramMap);
  20 +}
  1 +package com.yoho.search.service.service.impl;
  2 +
  3 +import com.yoho.search.models.SearchApiResult;
  4 +import com.yoho.search.service.service.IImageRepertoryService;
  5 +
  6 +import java.util.Map;
  7 +
  8 +/**
  9 + * 图库服务
  10 + * @Author: wangnan
  11 + * @Date: Created in 2018/4/16
  12 + */
  13 +public class ImageRepertoryServiceImpl implements IImageRepertoryService{
  14 +
  15 + @Override
  16 + public SearchApiResult searchImageRepertoryList(Map<String, String> paramMap) {
  17 + return null;
  18 + }
  19 +}
  20 +