|
@@ -59,9 +59,9 @@ public class KuaishouTemplateController {
|
|
@AutoLog(value = "快手-定向模板-分页列表查询")
|
|
@AutoLog(value = "快手-定向模板-分页列表查询")
|
|
@ApiOperation(value = "快手-定向模板-分页列表查询", notes = "快手-定向模板-分页列表查询")
|
|
@ApiOperation(value = "快手-定向模板-分页列表查询", notes = "快手-定向模板-分页列表查询")
|
|
@GetMapping(value = "/list")
|
|
@GetMapping(value = "/list")
|
|
- public Result<List<JSONObject>> list(Long accountId) {
|
|
|
|
|
|
+ public Result<List<JSONObject>> list(Long accountId,Integer platformOs) {
|
|
Result<List<JSONObject>> result = new Result<>();
|
|
Result<List<JSONObject>> result = new Result<>();
|
|
- List<JSONObject> list = kuaishouTemplateService.getJsonArrByAccountId(accountId);
|
|
|
|
|
|
+ List<JSONObject> list = kuaishouTemplateService.getJsonArrByAccountId(accountId,platformOs);
|
|
result.setSuccess(true);
|
|
result.setSuccess(true);
|
|
result.setResult(list);
|
|
result.setResult(list);
|
|
return result;
|
|
return result;
|