Commit bdf85900 authored by chang20170705's avatar chang20170705

goodsservice

parent 9af9691f
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("goods")
public class GoodsController {
}
package com.egolm.shop.service;
import java.util.List;
import java.util.Map;
public interface GoodsService {
}
package com.egolm.shop.service.impl;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.egolm.common.jdbc.JdbcTemplate;
import com.egolm.shop.service.GoodsService;
@Service
public class GoodsServiceImpl implements GoodsService {
private static final Log logger = LogFactory.getLog(GoodsServiceImpl.class);
@Autowired
private JdbcTemplate jdbcTemplate;
}
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