update comment

This commit is contained in:
macro 2019-10-17 21:36:17 +08:00
parent bed857f302
commit 84e1eddb99
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 {