Commit 51f47e37 authored by zhangyong's avatar zhangyong

1

parent e95f5d0c
package com.egolm.shop.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import io.swagger.annotations.Api;
@Api(tags={"品牌相关接口"})
@RestController
@RequestMapping("brand")
public class BrandController {
}
package com.egolm.shop.service;
public interface BrandService {
}
package com.egolm.shop.service.impl;
import java.util.List;
import java.util.Map;
import org.springframework.stereotype.Service;
import com.egolm.shop.service.BrandService;
@Service
public class BrandServiceImpl implements BrandService {
public List<Map<String,Object>> listBanner(Map<String,Object> params){
return null;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment