|
|
@ -378,6 +378,19 @@ public class IssueProjectTagDictRedis { |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 批量更新指定分类下的标签的禁用/启用属性 |
|
|
|
* @param customerId 客户Id |
|
|
|
* @param secondCategoryIds 二级分类集合 |
|
|
|
* @param availableFlag enable | disabled |
|
|
|
* @return void |
|
|
|
* @author wangc |
|
|
|
* @date 2021.03.22 16:20 |
|
|
|
*/ |
|
|
|
public void updateTagAvailabilityBySecondCategoryIds(String customerId,List<String>secondCategoryIds,String availableFlag){ |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
public <T> T parseObject(Object o,Class<T> clazz){ |
|
|
|
ObjectMapper objectMapper = new ObjectMapper(); |
|
|
|
T t = objectMapper.convertValue(o, clazz); |
|
|
|