This commit is contained in:
张成
2026-02-28 13:31:32 +08:00
parent dfd3119163
commit 58c9d64e55
6 changed files with 163 additions and 33 deletions

View File

@@ -232,6 +232,20 @@ module.exports = (db) => {
defaultValue: ''
},
// 投递用期望标签get_job_listings 拉取的 tab 列表与当前选中的 tab 文本
job_listings: {
comment: '简历/期望 tab 列表(JSON数组),如 ["推荐", "前端开发工程师"]',
type: Sequelize.JSON(),
allowNull: true,
defaultValue: null
},
deliver_tab_label: {
comment: '投递时使用的标签文本,对应 job_listings 中的某一项,如 "前端开发工程师"',
type: Sequelize.STRING(100),
allowNull: true,
defaultValue: ''
},
// 状态信息
isActive: {
comment: '是否活跃简历',