main
parent
d6754f1b37
commit
717d94c212
|
|
@ -32,7 +32,7 @@ public class AppUserDynamic extends BaseEntity
|
|||
|
||||
/** 关联话题id,多个话题逗号隔开 */
|
||||
@Excel(name = "关联话题id,多个话题逗号隔开")
|
||||
private Long topicId;
|
||||
private String topicId;
|
||||
|
||||
/** 地区 */
|
||||
@Excel(name = "地区")
|
||||
|
|
@ -81,12 +81,12 @@ public class AppUserDynamic extends BaseEntity
|
|||
{
|
||||
return videoUrl;
|
||||
}
|
||||
public void setTopicId(Long topicId)
|
||||
public void setTopicId(String topicId)
|
||||
{
|
||||
this.topicId = topicId;
|
||||
}
|
||||
|
||||
public Long getTopicId()
|
||||
public String getTopicId()
|
||||
{
|
||||
return topicId;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue