您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
447B

  1. class PullStreamDto:
  2. __slots__ = ('msg', 'context', 'pullQueue', 'fbQueue', 'hbQueue', 'imageQueue', 'analyse_type')
  3. def __init__(self, msg, context, pullQueue, fbQueue, hbQueue, imageQueue, analyse_type):
  4. self.msg = msg
  5. self.context = context
  6. self.pullQueue = pullQueue
  7. self.fbQueue = fbQueue
  8. self.hbQueue = hbQueue
  9. self.imageQueue = imageQueue
  10. self.analyse_type = analyse_type