2025-01-05 21:05:16 +08:00
|
|
|
from sqlalchemy import Column, Integer, String, Text
|
2025-03-05 20:56:27 +08:00
|
|
|
from mooc.db.database import Base
|
2025-01-05 21:05:16 +08:00
|
|
|
|
|
|
|
|
|
|
|
class MusicReply(Base):
|
|
|
|
__tablename__ = "music_reply"
|
|
|
|
|
|
|
|
Id = Column(Integer, primary_key=True, index=True)
|
|
|
|
Rid = Column(Integer, nullable=False)
|
|
|
|
Title = Column(String(50), nullable=False)
|
|
|
|
Description = Column(String(255), nullable=False)
|
|
|
|
Url = Column(String(300), nullable=False)
|
|
|
|
Hqurl = Column(String(300), nullable=False)
|