| 173 | source_keyword = Column(Text, default='', comment='来源关键词') |
| 174 | |
| 175 | class WeiboNoteComment(Base): |
| 176 | __tablename__ = 'weibo_note_comment' |
| 177 | id = Column(Integer, primary_key=True, comment='主键ID') |
| 178 | creator_hash = Column(String(64), index=True, comment='创作者匿名哈希') |
| 179 | nickname = Column(Text, comment='用户昵称(已脱敏)') |
| 180 | add_ts = Column(BigInteger, comment='添加时间戳') |
| 181 | last_modify_ts = Column(BigInteger, comment='最后修改时间戳') |
| 182 | comment_id = Column(String(64), index=True, comment='评论ID') |
| 183 | note_id = Column(String(64), index=True, comment='笔记ID') |
| 184 | content = Column(Text, comment='评论内容') |
| 185 | create_time = Column(BigInteger, comment='创建时间戳') |
| 186 | create_date_time = Column(String(255), index=True, comment='创建日期时间') |
| 187 | comment_like_count = Column(Text, comment='评论点赞数') |
| 188 | sub_comment_count = Column(Text, comment='子评论数') |
| 189 | parent_comment_id = Column(String(255), comment='父评论ID') |
| 190 | |
| 191 | class XhsNote(Base): |
| 192 | __tablename__ = 'xhs_note' |
no outgoing calls