|
|
|
@ -102,13 +102,13 @@ public class FineMarketClientHelper {
|
|
|
|
|
/** |
|
|
|
|
* 根据模板资源的tagid,获取tagName |
|
|
|
|
* */ |
|
|
|
|
public List<String> getTemplateTagsByTemplateTagIds(String[] TagIds) throws IOException { |
|
|
|
|
public List<String> getTemplateTagsByTemplateTagIds(String[] tagIds) throws IOException { |
|
|
|
|
List<String> list = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
initTags(); |
|
|
|
|
|
|
|
|
|
if (TagIds != null) { |
|
|
|
|
for (String tagId : TagIds) { |
|
|
|
|
if (tagIds != null) { |
|
|
|
|
for (String tagId : tagIds) { |
|
|
|
|
String tagName = tags.get(tagId); |
|
|
|
|
if (tagName != null) { |
|
|
|
|
list.add(tagName); |
|
|
|
|