|
@@ -40,7 +40,7 @@ public class DiagLantoneProductController {
|
|
|
notes = "name:产品名,必填<br>" +
|
|
|
"decription:产品描述,必填<br> " +
|
|
|
"url:产品访问路径,必填<br>" +
|
|
|
- "charge_type:支付方式,必填<br>" +
|
|
|
+ "charge_type:计费方式,必填<br>" +
|
|
|
"access_type:接入模式,必填<br>" +
|
|
|
"trialStatus:试用状态(是否可试用),必填<br>")
|
|
|
@PostMapping("/addProducts")
|
|
@@ -60,7 +60,13 @@ public class DiagLantoneProductController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "产品线管理——修改[by:wangyu]",
|
|
|
- notes = "id:根据产品id修改产品内容,必填<br>")
|
|
|
+ notes = "id:根据产品id修改产品内容,必填<br>" +
|
|
|
+ "name:产品名称,选填<br>" +
|
|
|
+ "url:产品访问路径,选填<br>" +
|
|
|
+ "decription:产品描述,选填<br>" +
|
|
|
+ "access_type:接入模式,选填<br>" +
|
|
|
+ "charge_type:计费方式,选填<br>" +
|
|
|
+ "trialStatus:试用状态(是否可试用),选填<br>")
|
|
|
@PostMapping("/updateProduct")
|
|
|
@SysLogger("updateProduct")
|
|
|
@Transactional
|
|
@@ -69,7 +75,8 @@ public class DiagLantoneProductController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "产品线管理——(启用/禁用)[by:wangyu]",
|
|
|
- notes = "id:根据产品id修改产品内容,必填<br>")
|
|
|
+ notes = "id:根据产品id修改产品内容,必填<br>" +
|
|
|
+ "serviceStatus:产品线状态(启用/禁用),必填<br>")
|
|
|
@PostMapping("/updateServiceStatus")
|
|
|
@SysLogger("updateServiceStatus")
|
|
|
@Transactional
|