|
@@ -15,6 +15,7 @@ import com.tzld.longarticle.recommend.server.service.strategy.reply.ReplyStrateg
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.util.CollectionUtils;
|
|
|
import org.springframework.util.StringUtils;
|
|
@@ -45,7 +46,8 @@ public class WeComPushMessageStrategyV1 implements ReplyStrategyService {
|
|
|
|
|
|
private static final String CDN_URL = "https://rescdn.piaoquantv.com/";
|
|
|
|
|
|
- private static final String GET_SMALL_PAGE_URL = "https://testapi.piaoquantv.com";
|
|
|
+ @Value("${small_page_url}")
|
|
|
+ private String GET_SMALL_PAGE_URL;
|
|
|
|
|
|
@Autowired
|
|
|
private AlgGhAutoreplyVideoRankDataMapper algGhAutoreplyVideoRankDataMapper;
|