mall-demo注释修改

This commit is contained in:
macro
2019-10-15 16:27:31 +08:00
parent d527b43682
commit 24c904a02a
2 changed files with 3 additions and 3 deletions

View File

@@ -18,9 +18,9 @@ import org.springframework.web.bind.annotation.*;
import java.util.List;
/**
* 测试controller
* 商品管理示例Controller
*/
@Api(value = "demo", description = "demo详情")
@Api(tags = "DemoController", description = "商品管理示例接口")
@Controller
public class DemoController {
@Autowired

View File

@@ -25,7 +25,7 @@ import java.util.Map;
* RestTemplate示例Controller
* Created by macro on 2018/9/17.
*/
@Api(value = "RestTemplateDemoController", description = "RestTemplate示例")
@Api(tags = "RestTemplateDemoController", description = "RestTemplate示例")
@Controller
@RequestMapping("/template")
public class RestTemplateDemoController {