Commit f1ecc6d8 authored by pengxiong's avatar pengxiong

去掉重复ZhiboTheme表

parent 75132aad
...@@ -3667,41 +3667,6 @@ class ZhiboSign(Base, BaseModel): ...@@ -3667,41 +3667,6 @@ class ZhiboSign(Base, BaseModel):
deletetag = Column(String(3), comment='删除标识') deletetag = Column(String(3), comment='删除标识')
class ZhiboTheme(Base, BaseModel):
__tablename__ = 'zhibo_theme'
id = Column(String(64), primary_key=True, comment='唯一主键')
zt_name = Column(String(32), comment='主题名称')
zt_starttime = Column(DateTime, comment='开播时间,显示的开始时间')
zt_endtime = Column(DateTime, comment='结束时间,显示的结束时间')
zt_desc = Column(String(512), comment='描述,介绍')
zt_roomnum = Column(String(32))
create_time = Column(DateTime, comment='创建时间')
create_by = Column(String(64), comment='创建人')
update_time = Column(DateTime, comment='修改时间')
update_by = Column(String(64), comment='修改人')
deletetag = Column(String(3), comment='删除标识')
zt_status = Column(Text, comment='直播间状态')
zt_backimg = Column(String(128), comment='直播背景图,封面')
share_pattern = Column(INTEGER(3), comment='分享模式')
zt_img = Column(String(128), comment='缩略图')
zt_iszhibo = Column(String(3), comment='是否含直播')
zt_proid = Column(String(64), comment='关联产品')
zt_uname = Column(String(128), comment='培训人')
zt_flag = Column(String(3), comment='参与人开放标识')
org_id = Column(String(64), comment='机构ID')
zt_password = Column(String(8), comment='密码')
zt_label = Column(String(1024), comment='直播标签')
zt_userids = Column(Text, comment='参与人')
zt_mute = Column(String(3), comment='是否静音 0:否 1:是')
zt_type = Column(String(64), comment='标签')
zt_appointment_nums = Column(INTEGER(8))
zt_info = Column(Text)
zt_qrcode = Column(String(256))
zt_fuli = Column(Text)
zt_cardinal = Column(INTEGER(11), comment='直播基数')
class ZhiboUser(Base, BaseModel): class ZhiboUser(Base, BaseModel):
__tablename__ = 'zhibo_users' __tablename__ = 'zhibo_users'
......
...@@ -4,291 +4,6 @@ from sqlalchemy.dialects.mysql import BIGINT, INTEGER, VARCHAR ...@@ -4,291 +4,6 @@ from sqlalchemy.dialects.mysql import BIGINT, INTEGER, VARCHAR
from sqlalchemy.ext.declarative import declarative_base from sqlalchemy.ext.declarative import declarative_base
from app.model.base import Base, BaseModel from app.model.base import Base, BaseModel
class ZhiboAppointTask(Base, BaseModel):
__tablename__ = 'zhibo_appoint_task'
__table_args__ = {'comment': '预约任务'}
id = Column(String(64), primary_key=True, comment='主键id')
theme_id = Column(String(64), nullable=False, index=True, comment='直播间id')
parent_id = Column(String(64), index=True, comment='母直播间id')
begin_time = Column(TIMESTAMP, nullable=False, server_default=text("CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP"), comment='开始时间')
type = Column(INTEGER(3), nullable=False, comment='1:直播预约提醒 2:直播全员推送提醒')
statut = Column(INTEGER(3), nullable=False, server_default=text("'0'"), comment='状态 0:未发送 1:已发送')
create_time = Column(TIMESTAMP, nullable=False, server_default=text("CURRENT_TIMESTAMP"), comment='创建时间')
update_time = Column(TIMESTAMP, nullable=False, server_default=text("CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP"), comment='修改时间')
deletetag = Column(INTEGER(3), server_default=text("'0'"), comment='删除标识 0:未删除 1:已删除')
class ZhiboBlack(Base, BaseModel):
__tablename__ = 'zhibo_black'
id = Column(String(64), primary_key=True, comment='唯一主键')
zb_user_id = Column(String(64), comment='用户id')
zb_theme_id = Column(String(64), comment='主题ID')
zb_room_num = Column(String(64), comment='直播房间号')
org_id = Column(String(64), comment='机构ID')
create_time = Column(DateTime, comment='创建时间')
create_by = Column(String(64), comment='创建人')
update_time = Column(DateTime, comment='修改时间')
update_by = Column(String(64), comment='修改人')
delete_tag = Column(String(3), comment='删除标识')
class ZhiboExam(Base, BaseModel):
__tablename__ = 'zhibo_exam'
id = Column(String(64), primary_key=True, comment='唯一主键')
ze_themeid = Column(String(64), comment='主题ID')
ze_teaid = Column(String(64), comment='老师ID')
ze_title = Column(String(128), comment='题目')
ze_options = Column(String(2048), comment='选项')
org_id = Column(String(64), comment='机构ID')
create_time = Column(DateTime, comment='创建时间')
create_by = Column(String(64), comment='创建人')
update_time = Column(DateTime, comment='修改时间')
update_by = Column(String(64), comment='修改人')
deletetag = Column(String(3), comment='删除标识')
class ZhiboExamAnswer(Base, BaseModel):
__tablename__ = 'zhibo_exam_answer'
id = Column(String(64), primary_key=True, comment='唯一主键')
zs_themeid = Column(String(64), comment='主题ID')
zs_msg = Column(String(64), comment='消息ID')
zs_userid = Column(String(64), comment='用户ID')
zs_answer = Column(String(64), comment='选择答案')
org_id = Column(String(64), comment='机构ID')
create_time = Column(DateTime, comment='创建时间')
create_by = Column(String(64), comment='创建人')
update_time = Column(DateTime, comment='修改时间')
update_by = Column(String(64), comment='修改人')
deletetag = Column(String(3), comment='删除标识')
class ZhiboFile(Base, BaseModel):
__tablename__ = 'zhibo_file'
__table_args__ = {'comment': '直播附件表'}
id = Column(String(64), primary_key=True, comment='唯一主键')
zf_themeid = Column(String(32), comment='主题ID')
zf_url = Column(String(256), comment='附件地址')
zf_file_type = Column(String(3), server_default=text("'1'"), comment='上传类型 1直播间附件,2直播间图片 ,3直播间转码视频,4直播间转码音频,5直播间原始视频,6直播间原始音频,7讲师本地上传图片,8用户头像,9问卷图片,10 直播间课件')
zf_use = Column(String(3), comment='用途')
zf_no = Column(INTEGER(3), server_default=text("'1'"), comment='序号')
create_time = Column(DateTime, comment='创建时间')
create_by = Column(String(64), comment='创建人')
update_time = Column(DateTime, comment='修改时间')
update_by = Column(String(64), comment='修改人')
deletetag = Column(String(3), server_default=text("'0'"), comment='删除标识')
org_id = Column(String(64), comment='机构ID')
file_ext = Column(String(10), comment='文件扩展名')
file_size = Column(INTEGER(11), server_default=text("'0'"), comment='文件大小')
file_md5 = Column(String(32), comment='文件Md5')
remark = Column(String(100), comment='备注 文件名')
status = Column(INTEGER(5), server_default=text("'0'"), comment='文件状态 0:未完成,1:已完成')
task_id = Column(String(64), comment='阿里云异步转换id')
cs_file_id = Column(String(64), comment='filerecord记录id')
file_num = Column(INTEGER(11), server_default=text("'0'"), comment='附件总页数 用于转换图片使用')
class ZhiboFileBrowse(Base, BaseModel):
__tablename__ = 'zhibo_file_browse'
__table_args__ = {'comment': '附件浏览记录表'}
id = Column(String(64), primary_key=True, comment='主键id')
user_id = Column(String(64), comment='用户id')
zb_id = Column(String(64), index=True, comment='直播id')
file_id = Column(String(64), nullable=False, index=True, comment='附件id')
remark = Column(String(100), comment='备注')
create_time = Column(DateTime, comment='创建时间')
create_by = Column(VARCHAR(64), comment='创建人')
update_time = Column(DateTime, comment='修改时间')
update_by = Column(VARCHAR(64), comment='修改人')
deletetag = Column(VARCHAR(3), server_default=text("'0'"), comment='删除标识')
class ZhiboHost(Base, BaseModel):
__tablename__ = 'zhibo_host'
id = Column(String(64), primary_key=True, comment='唯一主键')
zh_roomnum = Column(String(32), comment='直播房间号')
zh_status = Column(String(3), comment='直播状态')
create_time = Column(DateTime, comment='创建时间')
create_by = Column(String(64), comment='创建人')
update_time = Column(DateTime, comment='修改时间')
update_by = Column(String(64), comment='修改人')
deletetag = Column(String(3), comment='删除标识')
zh_room_name = Column(String(64), comment='直播房间名称')
class ZhiboInvitationCode(Base, BaseModel):
__tablename__ = 'zhibo_invitation_code'
__table_args__ = (
Index('ziu_theme_id', 'ziu_theme_id', 'ziu_userid', unique=True),
{'comment': '邀请码'}
)
id = Column(String(64), primary_key=True)
ziu_theme_id = Column(String(64), nullable=False, comment='直播主题ID')
ziu_userid = Column(String(64), nullable=False, comment='用户ID')
invitation_code = Column(String(64), nullable=False, unique=True, comment='邀请码')
create_time = Column(DateTime, nullable=False, server_default=text("CURRENT_TIMESTAMP"))
class ZhiboInvitationLink(Base, BaseModel):
__tablename__ = 'zhibo_invitation_link'
id = Column(String(64), primary_key=True)
zb_id = Column(String(64), nullable=False, index=True, comment='直播间id')
invite_user_id = Column(String(64), comment='邀请人id')
link = Column(String(500), comment='邀请链接')
invited_user_id = Column(String(64), comment='被邀请人id')
create_time = Column(TIMESTAMP, server_default=text("CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP"), comment='创建时间')
invited_time = Column(TIMESTAMP)
expire_time = Column(TIMESTAMP)
deletetag = Column(String(5), server_default=text("'0'"), comment='删除状态 0:正常 1:失效')
class ZhiboInviteUser(Base, BaseModel):
__tablename__ = 'zhibo_invite_users'
__table_args__ = (
Index('unique_pk_1', 'ziu_theme_id', 'ziu_userid', unique=True),
)
id = Column(String(64), primary_key=True, server_default=text("''"), comment='唯一主键')
ziu_theme_id = Column(String(64), comment='直播主题ID')
ziu_userid = Column(String(64), comment='用户ID')
ziu_username = Column(String(32), comment='用户姓名')
ziu_phone = Column(String(32), comment='用户手机号')
inviter_userid = Column(String(64), comment='邀请人ID')
org_id = Column(String(64), comment='机构ID')
create_time = Column(DateTime, comment='创建时间')
create_by = Column(String(64), comment='创建人')
update_time = Column(DateTime, comment='修改时间')
update_by = Column(String(64), comment='修改人')
delete_tag = Column(String(3), comment='删除标识')
class ZhiboManager(Base, BaseModel):
__tablename__ = 'zhibo_manager'
__table_args__ = {'comment': '直播讲师表'}
id = Column(String(64), primary_key=True, comment='唯一主键')
zm_userid = Column(String(64), comment='管理员')
zm_roomnum = Column(String(64), comment='直播房间号(废弃)')
zm_shenfen = Column(String(3), comment='管理员身份(0:主持人 1:主讲人)')
zm_paixu = Column(INTEGER(3))
zm_username = Column(String(32))
create_time = Column(DateTime, comment='创建时间')
create_by = Column(String(64), comment='创建人')
update_time = Column(DateTime, comment='修改时间')
update_by = Column(String(64), comment='修改人')
deletetag = Column(String(3), comment='删除标识')
org_id = Column(String(64), comment='机构ID')
zb_id = Column(String(64), server_default=text("''"), comment='直播房间id')
user_title = Column(String(50), comment='直播头衔 ')
invite_userid = Column(String(64), comment='邀请人id (废弃)使用create_by')
class ZhiboMessage(Base, BaseModel):
__tablename__ = 'zhibo_message'
__table_args__ = {'comment': '直播消息'}
id = Column(String(64), primary_key=True, comment='唯一主键')
zm_content = Column(String(1024), comment='消息')
zm_themeid = Column(String(64))
zm_serviceid = Column(String(128), comment='微信serviceId')
zm_format = Column(String(3), index=True, comment='消息格式')
zm_type = Column(String(3), index=True, comment='消息类型 0:普通消息 2:讲师消息 4:助理消息')
zm_askid = Column(String(64), comment='提问消息ID')
zm_roomnum = Column(String(32), comment='直播房间号')
zm_audiotimelength = Column(INTEGER(11), server_default=text("'5'"))
zm_timesplit = Column(String(3))
zm_audiotext = Column(String(512))
zm_status = Column(String(3), comment='直播间状态 1:未开始 2:直播中 3:已结束')
zm_recordtime = Column(DateTime, index=True)
zm_msg_text = Column(Text)
create_time = Column(DateTime, comment='创建时间')
create_by = Column(String(64), comment='创建人')
update_time = Column(DateTime, comment='修改时间')
update_by = Column(String(64), comment='修改人')
deletetag = Column(String(3), comment='删除标识')
org_id = Column(String(64), comment='机构ID')
highlighted = Column(INTEGER(3), comment='是否是重点')
msg_seq = Column(BIGINT(20), comment='腾讯消息唯一序列(值越大消息越靠后)')
zm_random = Column(String(64), comment='腾讯消息32位随机整数')
operator_account = Column(String(128), comment='腾讯消息请求发起者UserId,可以用来识别是否为管理员请求')
group_type = Column(String(64), comment='腾讯群组类型(Private| Public| ChatRoom| AVChatRoom)')
class ZhiboPhrase(Base, BaseModel):
__tablename__ = 'zhibo_phrase'
id = Column(String(64), primary_key=True, comment='唯一主键')
zp_type = Column(String(64), comment='类型')
zp_content = Column(String(1024), comment='内容')
zp_sort_num = Column(INTEGER(11), comment='排序')
org_id = Column(String(64), comment='机构ID')
create_time = Column(DateTime, comment='创建时间')
create_by = Column(String(64), comment='创建人')
update_time = Column(DateTime, comment='修改时间')
update_by = Column(String(64), comment='修改人')
delete_tag = Column(String(3), comment='删除标识')
class ZhiboReluser(Base, BaseModel):
__tablename__ = 'zhibo_relusers'
__table_args__ = {'comment': '直播相关用户'}
id = Column(String(64), primary_key=True)
zt_faid = Column(String(64), comment='理财师ID')
zt_username = Column(String(32), comment='信息收集用户姓名')
zr_phone = Column(String(16), comment='信息收集用户手机')
zr_isfillin = Column(INTEGER(3), comment='是否已填写信息表 0:否 1:是')
zr_fillin_time = Column(DateTime, comment='用户信息收集时间 ')
zr_isconsultation = Column(INTEGER(3), comment='是否咨询过理财师 0:否 1:是')
create_time = Column(DateTime, nullable=False, comment='创建时间')
create_by = Column(String(64), nullable=False, comment='创建人')
update_time = Column(DateTime, comment='修改时间')
update_by = Column(String(64), comment='修改人')
delete_tag = Column(String(3), nullable=False, comment='删除标识')
class ZhiboSign(Base, BaseModel):
__tablename__ = 'zhibo_sign'
id = Column(String(64), primary_key=True, comment='唯一主键')
zs_themeid = Column(String(64), comment='主题ID')
zs_userid = Column(String(64), comment='签到人ID')
zs_headimg = Column(String(256), comment='签到人头像')
zs_uname = Column(String(64), comment='签到人姓名')
org_id = Column(String(64), comment='机构ID')
create_time = Column(DateTime, comment='创建时间')
create_by = Column(String(64), comment='创建人')
update_time = Column(DateTime, comment='修改时间')
update_by = Column(String(64), comment='修改人')
deletetag = Column(String(3), comment='删除标识')
class ZhiboStatInfo(Base, BaseModel):
__tablename__ = 'zhibo_stat_info'
__table_args__ = {'comment': '直播结束后信息统计'}
id = Column(String(64), primary_key=True)
zb_id = Column(String(64), nullable=False, unique=True, comment='直播id')
top_people = Column(INTEGER(11), server_default=text("'0'"), comment='峰值人数')
total_invited = Column(INTEGER(11), server_default=text("'0'"), comment='分享人数')
new_important_customer = Column(INTEGER(11), server_default=text("'0'"), comment='新增重点访客')
new_first_class_friend = Column(INTEGER(11), server_default=text("'0'"), comment='新增一级好友')
total_advisory = Column(INTEGER(11), server_default=text("'0'"), comment='累计咨询次数')
new_guest = Column(INTEGER(11), server_default=text("'0'"), comment='新增访客')
total_replay = Column(INTEGER(11), server_default=text("'0'"), comment='回放次数')
time = Column(TIMESTAMP)
deletetag = Column(String(1), server_default=text("'0'"), comment='删除标志 0:正常 1:删除')
class ZhiboTheme(Base, BaseModel): class ZhiboTheme(Base, BaseModel):
__tablename__ = 'zhibo_theme' __tablename__ = 'zhibo_theme'
__table_args__ = {'comment': '直播间信息表'} __table_args__ = {'comment': '直播间信息表'}
...@@ -364,87 +79,4 @@ class ZhiboTheme(Base, BaseModel): ...@@ -364,87 +79,4 @@ class ZhiboTheme(Base, BaseModel):
isPrivacy = Column(INTEGER(3), comment='是否隐私直播间0否1是') isPrivacy = Column(INTEGER(3), comment='是否隐私直播间0否1是')
iscreate_group_success = Column(INTEGER(3), server_default=text("'0'"), comment='是否已创建群组 0:否 1:是') iscreate_group_success = Column(INTEGER(3), server_default=text("'0'"), comment='是否已创建群组 0:否 1:是')
max_online_num = Column(INTEGER(11), server_default=text("'0'"), comment='在线人数峰值') max_online_num = Column(INTEGER(11), server_default=text("'0'"), comment='在线人数峰值')
tags = Column(String(255), comment='标签') tags = Column(String(255), comment='标签')
\ No newline at end of file
class ZhiboUserAction(Base, BaseModel):
__tablename__ = 'zhibo_user_action'
__table_args__ = (
Index('zu_themdid', 'zu_themdid', 'zu_uid', 'zu_type'),
{'comment': '直播用户行为记录表'}
)
id = Column(String(64), primary_key=True)
zu_themdid = Column(String(64), nullable=False, comment='主题ID')
zu_uid = Column(String(64), nullable=False, comment='人员ID')
zu_type = Column(String(5), nullable=False, index=True, comment='行为类型:1分享2回放...')
sundry = Column(String(2000), comment='存储不同行为的杂项信息')
create_time = Column(DateTime, comment='创建时间')
create_by = Column(String(64), comment='创建人')
deletetag = Column(String(3), comment='删除标识')
class ZhiboUserPlayRecord(Base, BaseModel):
__tablename__ = 'zhibo_user_play_record'
__table_args__ = {'comment': '直播播放记录'}
id = Column(String(64), primary_key=True, comment='主键')
zb_id = Column(String(64), nullable=False, comment='直播间id')
user_id = Column(String(64), nullable=False, comment='用户id')
zb_status = Column(INTEGER(11), nullable=False, comment='直播状态:2直播中,3已结束')
play_start_time = Column(INTEGER(11), nullable=False, comment='播放开始时间(秒)')
play_duration = Column(INTEGER(11), nullable=False, comment='播放时长')
create_time = Column(DateTime, nullable=False, comment='创建时间')
create_by = Column(String(64), nullable=False, comment='创建人')
update_time = Column(DateTime, comment='修改时间')
update_by = Column(String(64), comment='修改人')
deletetag = Column(INTEGER(11), nullable=False, server_default=text("'0'"), comment='删除标识')
class ZhiboUser(Base, BaseModel):
__tablename__ = 'zhibo_users'
__table_args__ = (
Index('zhibo_users_pk', 'zu_themdid', 'zu_uid', unique=True),
{'comment': '直播用户表'}
)
id = Column(String(64), primary_key=True, comment='唯一主键')
zu_themdid = Column(String(32), nullable=False, comment='主题ID')
zu_uid = Column(String(32), nullable=False, comment='组织或人员ID')
zu_type = Column(String(3), comment='类型')
zu_fullpath = Column(String(512))
create_time = Column(DateTime, index=True, comment='创建时间')
create_by = Column(String(64), comment='创建人')
update_time = Column(DateTime, comment='修改时间')
update_by = Column(String(64), comment='修改人')
deletetag = Column(String(3), index=True, comment='删除标识')
org_id = Column(String(64), comment='机构ID')
appointment_time = Column(TIMESTAMP, comment='预约时间')
shie_id = Column(INTEGER(5), server_default=text("'0'"), comment='屏蔽 0:不屏蔽 1:屏蔽')
no_talking = Column(INTEGER(5), server_default=text("'0'"), comment='禁止发言 0:不禁止 1:禁止')
invite_userid = Column(String(64), comment='邀请人id')
entry_time = Column(TIMESTAMP, index=True, comment='首次进入房间时间')
total_zhibo_seconds = Column(INTEGER(11), server_default=text("'0'"), comment='累计直播市场 秒')
total_in_times = Column(INTEGER(11), server_default=text("'0'"), comment='累计进入次数')
entry_before_start = Column(INTEGER(2), comment='是否直播前进入过房间 0:不是,1:是')
online_between_zhibo = Column(INTEGER(2), server_default=text("'0'"), comment='直播过程中是否在线 0:不是 1:是')
entry_between_zhibo = Column(INTEGER(2), server_default=text("'0'"), comment='是否直播中进入过房间 0:不是 1:是')
entry_after_zhibo = Column(INTEGER(2), server_default=text("'0'"), comment='是否直播后进入过房间 0不是 1:是')
zu_links = Column(String(1024), comment='首次进入直播间链路')
last_private_chat_time = Column(DateTime, comment='最近私聊消息时间')
class ZhiboUsersOnlineRecord(Base, BaseModel):
__tablename__ = 'zhibo_users_online_record'
__table_args__ = {'comment': '直播间用户在线状态'}
id = Column(String(64), primary_key=True)
zb_id = Column(String(64), index=True, comment='直播间id')
user_id = Column(String(64), index=True, comment='用户id')
type = Column(INTEGER(2), index=True, server_default=text("'1'"), comment='类型 1进入房间,2离开房间')
create_time = Column(DateTime, index=True, comment='创建时间')
create_by = Column(VARCHAR(64), comment='创建人')
update_time = Column(DateTime, comment='修改时间')
update_by = Column(VARCHAR(64), comment='修改人')
deletetag = Column(VARCHAR(3), index=True, server_default=text("'0'"), comment='删除标识')
online_time = Column(INTEGER(11), server_default=text("'0'"), comment='在线时长,当type=2时有值,单位秒')
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment