refactor:接口名修改

This commit is contained in:
haoxr 2021-02-27 11:27:33 +08:00
parent 89f5069391
commit ac97045bb2
2 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ import org.springframework.web.bind.annotation.*;
@RequestMapping("/api.admin/v1/inventories")
@Slf4j
@AllArgsConstructor
public class InventoryController {
public class SkuController {
private IPmsSkuService iPmsSkuService;

View File

@ -19,9 +19,9 @@ import java.util.List;
@Api(tags = "【移动端】商品库存")
@RestController("AppInventoryController")
@RequestMapping("/api.app/v1/inventories")
@RequestMapping("/api.app/v1/sku")
@AllArgsConstructor
public class InventoryController {
public class SkuController {
private IPmsSkuService iPmsSkuService;