docs: 类注释优化

This commit is contained in:
郝先瑞 2022-02-02 00:03:05 +08:00
parent 25da36eeb9
commit 9e5948cdd9
4 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@ import org.springframework.web.bind.annotation.*;
/**
* @author <a href="mailto:xianrui0365@163.com">haoxr</a>
*/
@Api(tags = "系统管理端-库存信息")
@Api(tags = "系统端-库存信息")
@RestController
@RequestMapping("/api/v1/inventories")
@RequiredArgsConstructor

View File

@ -17,7 +17,7 @@ import java.util.List;
/**
* @author <a href="mailto:xianrui0365@163.com">haoxr</a>
*/
@Api(tags = "移动端-商品分类")
@Api(tags = "「移动端」商品分类")
@RestController("appCategoryController")
@RequestMapping("/app-api/v1/categories")
@Slf4j

View File

@ -20,7 +20,7 @@ import org.springframework.web.bind.annotation.*;
import java.util.List;
import java.util.stream.Collectors;
@Api(tags = "移动端-商品信息")
@Api(tags = "「移动端」商品信息")
@RestController(value = "appGoodsController")
@RequestMapping("/app-api/v1/goods")
@AllArgsConstructor

View File

@ -14,7 +14,7 @@ import java.util.List;
/**
* Stock Keeping Unit
*/
@Api(tags = "移动端-商品库存")
@Api(tags = "「移动端」商品库存")
@RestController(value = "appStockController")
@RequestMapping("/app-api/v1/stocks")
@AllArgsConstructor