|
@@ -35,7 +35,7 @@ public class DiagLantoneProductController {
|
|
|
@Autowired
|
|
|
private LantoneProductFacade lantoneProductFacade;
|
|
|
|
|
|
- @ApiOperation(value = "产品线管理添加产品[by:wangyu]",
|
|
|
+ @ApiOperation(value = "产品线管理——添加[by:wangyu]",
|
|
|
notes = "name:产品名,必填<br>" +
|
|
|
"decription:产品描述,必填<br> " +
|
|
|
"url:产品访问路径,必填<br>" +
|
|
@@ -47,7 +47,7 @@ public class DiagLantoneProductController {
|
|
|
return RespDTO.onSuc(lantoneProductFacade.addProducts(addProductsVO));
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "朗通产品线管理查询产品线[by:wangyu]",
|
|
|
+ @ApiOperation(value = "产品线管理——查询[by:wangyu]",
|
|
|
notes = "name:添加后则根据产品名称查询,选填<br>"+
|
|
|
"根据每页显示条数,默认 10,和当前页<br>")
|
|
|
@PostMapping("/selectProduct")
|
|
@@ -57,7 +57,7 @@ public class DiagLantoneProductController {
|
|
|
return RespDTO.onSuc(pages);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "朗通产品线管理修改产品[by:wangyu]",
|
|
|
+ @ApiOperation(value = "产品线管理——修改[by:wangyu]",
|
|
|
notes = "id:根据产品id修改产品内容,必填<br>")
|
|
|
@PostMapping("/updateProduct")
|
|
|
@SysLogger("updateProduct")
|
|
@@ -66,7 +66,7 @@ public class DiagLantoneProductController {
|
|
|
return RespDTO.onSuc(lantoneProductFacade.updateProduct(updateProductVO));
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "产品(启用/禁用)接口[by:wangyu]",
|
|
|
+ @ApiOperation(value = "产品线管理——(启用/禁用)[by:wangyu]",
|
|
|
notes = "id:根据产品id修改产品内容,必填<br>")
|
|
|
@PostMapping("/updateServiceStatus")
|
|
|
@SysLogger("updateServiceStatus")
|
|
@@ -75,7 +75,7 @@ public class DiagLantoneProductController {
|
|
|
return RespDTO.onSuc(lantoneProductFacade.updateProduct(updateProductVO));
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "删除产品[by:wangyu]",
|
|
|
+ @ApiOperation(value = "产品线管理——删除[by:wangyu]",
|
|
|
notes = "id:根据产品id删除产品,必填<br>")
|
|
|
@PostMapping("/deleteProduct")
|
|
|
@SysLogger("deleteProduct")
|
|
@@ -84,7 +84,7 @@ public class DiagLantoneProductController {
|
|
|
return RespDTO.onSuc(lantoneProductFacade.deleteProduct(updateProductVO));
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "查询当条产品线所有已开通用户[by:wangyu]",
|
|
|
+ @ApiOperation(value = "产品线管理——详情[by:wangyu]",
|
|
|
notes = "id:根据产品id查询所有已开通本产品用户,必填<br>"+
|
|
|
"current:页数<br>"+
|
|
|
"size:每页显示条数"
|