补充文档,修改清洗方案
This commit is contained in:
@@ -13,10 +13,10 @@ class JobRegionRelation(MysqlBase):
|
||||
|
||||
__tablename__ = "bg_job_region_relation"
|
||||
|
||||
id: Mapped[int] = mapped_column(BigInteger, primary_key=True, autoincrement=True)
|
||||
job_id: Mapped[int] = mapped_column(BigInteger, nullable=False)
|
||||
region_code: Mapped[str] = mapped_column(String(20), nullable=False)
|
||||
create_time: Mapped[datetime] = mapped_column(DateTime, nullable=False)
|
||||
id: Mapped[int] = mapped_column(BigInteger, primary_key=True, comment="主键ID(雪花)")
|
||||
job_id: Mapped[int] = mapped_column(BigInteger, nullable=False, comment="岗位ID")
|
||||
region_code: Mapped[str] = mapped_column(String(20), nullable=False, comment="地区编码")
|
||||
create_time: Mapped[datetime] = mapped_column(DateTime, nullable=False, comment="创建时间")
|
||||
|
||||
|
||||
class JobSkillTagRelation(MysqlBase):
|
||||
@@ -24,7 +24,7 @@ class JobSkillTagRelation(MysqlBase):
|
||||
|
||||
__tablename__ = "bg_job_skill_tag_relation"
|
||||
|
||||
id: Mapped[int] = mapped_column(BigInteger, primary_key=True, autoincrement=True)
|
||||
job_id: Mapped[int] = mapped_column(BigInteger, nullable=False)
|
||||
skill_tag_id: Mapped[int] = mapped_column(BigInteger, nullable=False)
|
||||
create_time: Mapped[datetime] = mapped_column(DateTime, nullable=False)
|
||||
id: Mapped[int] = mapped_column(BigInteger, primary_key=True, comment="主键ID(雪花)")
|
||||
job_id: Mapped[int] = mapped_column(BigInteger, nullable=False, comment="岗位ID")
|
||||
skill_tag_id: Mapped[int] = mapped_column(BigInteger, nullable=False, comment="技能标签ID")
|
||||
create_time: Mapped[datetime] = mapped_column(DateTime, nullable=False, comment="创建时间")
|
||||
|
||||
Reference in New Issue
Block a user