Commit 70ceeae4 by leiliangliang

增加HotSearchCache实体类字段

parent 7682410c
......@@ -4,6 +4,7 @@ import lombok.Data;
import lombok.ToString;
import java.util.Date;
import java.util.List;
@ToString
@Data
......@@ -113,6 +114,23 @@ public class HotSearchCache {
*/
private String downtext;
/** 真实最新排名 (微博热搜)*/
private Integer realLastRank;
/** 真实最高排名 (微博热搜)*/
private Integer realHighestRank;
/** 标签 (B站排行榜)*/
private String tag;
/** 分类 (微博热搜)*/
private List<String> classify;
/** 地区 (微博热搜)*/
private List<String> region;
/** 标签 (微博热搜)*/
private List<String> label;
public HotSearchCache(String url, String name, String topicLead, Long highestCount, Long lastCount, Boolean hot,
Date startTime, Date endTime, Integer highestRank, Integer lastRank, String type, Integer duration){
this.id = name + "_" + type;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment