linhw 2024-04-23 18:18:40 +08:00
parent d6754f1b37
commit 717d94c212
1 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ public class AppUserDynamic extends BaseEntity
/** 关联话题id多个话题逗号隔开 */ /** 关联话题id多个话题逗号隔开 */
@Excel(name = "关联话题id多个话题逗号隔开") @Excel(name = "关联话题id多个话题逗号隔开")
private Long topicId; private String topicId;
/** 地区 */ /** 地区 */
@Excel(name = "地区") @Excel(name = "地区")
@ -81,12 +81,12 @@ public class AppUserDynamic extends BaseEntity
{ {
return videoUrl; return videoUrl;
} }
public void setTopicId(Long topicId) public void setTopicId(String topicId)
{ {
this.topicId = topicId; this.topicId = topicId;
} }
public Long getTopicId() public String getTopicId()
{ {
return topicId; return topicId;
} }