店员,商品导入,sql

This commit is contained in:
chc
2022-09-01 18:53:12 +08:00
parent b873ec2095
commit 2648a0b57e
7 changed files with 299 additions and 14 deletions

View File

@@ -6,12 +6,11 @@ import cn.lili.common.enums.ResultUtil;
import cn.lili.common.exception.ServiceException;
import cn.lili.common.vo.ResultMessage;
import cn.lili.modules.goods.service.GoodsImportService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestPart;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import javax.servlet.http.HttpServletResponse;
@@ -20,6 +19,9 @@ import javax.servlet.http.HttpServletResponse;
* @author chc
* @since 2022/6/2114:46
*/
@Api(tags = "商品导入")
@RestController
@RequestMapping("/store/goods/import")
public class GoodsImportController {
@Autowired
private GoodsImportService goodsImportService;