1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.matrix.system.app.action;
|
| import com.matrix.core.pojo.AjaxResult;
| import io.swagger.annotations.Api;
| import org.springframework.web.bind.annotation.RequestMapping;
|
| /**
| * @author wzy
| * @date 2020-12-27
| **/
| @Api(value = "ApiStoreAction", tags = "库存管理接口类")
| @RequestMapping(value = "/api/store")
| public class ApiStoreAction {
|
| }
|
|