添加ORM表

This commit is contained in:
zk
2026-07-24 18:27:20 +08:00
parent 75d2bf93e9
commit 8d67bc76ec
9 changed files with 186 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
"""MySQL: bg_recruit_announcement_batch 招聘公告-批次关联表模型"""
from datetime import datetime
from sqlalchemy import BigInteger, DateTime, String
from sqlalchemy.orm import Mapped, mapped_column
from app.core.database import MysqlBase
class RecruitAnnouncementBatch(MysqlBase):
"""招聘公告-批次关联表"""
__tablename__ = "bg_recruit_announcement_batch"
id: Mapped[int] = mapped_column(BigInteger, primary_key=True, comment="主键ID(雪花)")
announcement_id: Mapped[int] = mapped_column(BigInteger, nullable=False, comment="公告id")
batch_name: Mapped[str] = mapped_column(String(64), nullable=False, comment="批次值,如实习/暑期实习/寒假实习/秋招专场/春招提前批/春招补招")
create_time: Mapped[datetime] = mapped_column(DateTime, nullable=False, comment="创建时间")