Merge remote-tracking branch 'origin/feature/REQ-3201' into feature/REQ-3201

This commit is contained in:
yanglin 2024-12-26 09:33:45 +08:00
commit f75b5cca1a

View File

@ -21,6 +21,7 @@ import lombok.Data;
import lombok.RequiredArgsConstructor; import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.apache.commons.compress.utils.Lists; import org.apache.commons.compress.utils.Lists;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.cloud.context.config.annotation.RefreshScope; import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import org.springframework.util.CollectionUtils; import org.springframework.util.CollectionUtils;
@ -46,7 +47,8 @@ public class UpdateTemplateV3ChannelStyleVersionJob extends IJobHandler {
* 注意:线上卡片样式初始化保持一致 * 注意:线上卡片样式初始化保持一致
* card_style#code初始化时一定是 60d52877f3e2424380c3353baca3810c * card_style#code初始化时一定是 60d52877f3e2424380c3353baca3810c
*/ */
private final static String cardStyleCode = "60d52877f3e2424380c3353baca3810c"; @Value("${card.style.code:common_style_001}")
private String cardStyleCode;
@XxlJob("updateTemplateV3ChannelStyleVersionJob") @XxlJob("updateTemplateV3ChannelStyleVersionJob")
@Override @Override