| 108 | source_keyword = Column(Text, default='', comment='来源关键词') |
| 109 | |
| 110 | class DouyinAwemeComment(Base): |
| 111 | __tablename__ = 'douyin_aweme_comment' |
| 112 | id = Column(Integer, primary_key=True, comment='主键ID') |
| 113 | creator_hash = Column(String(64), index=True, comment='创作者匿名哈希') |
| 114 | nickname = Column(Text, comment='用户昵称(已脱敏)') |
| 115 | add_ts = Column(BigInteger, comment='添加时间戳') |
| 116 | last_modify_ts = Column(BigInteger, comment='最后修改时间戳') |
| 117 | comment_id = Column(String(255), index=True, comment='评论ID') |
| 118 | aweme_id = Column(String(255), index=True, comment='作品ID') |
| 119 | content = Column(Text, comment='评论内容') |
| 120 | create_time = Column(BigInteger, comment='创建时间戳') |
| 121 | sub_comment_count = Column(Text, comment='子评论数') |
| 122 | parent_comment_id = Column(String(255), comment='父评论ID') |
| 123 | like_count = Column(Text, default='0', comment='点赞数') |
| 124 | pictures = Column(Text, default='', comment='图片') |
| 125 | |
| 126 | class KuaishouVideo(Base): |
| 127 | __tablename__ = 'kuaishou_video' |
no outgoing calls