This commit is contained in:
张成
2025-12-25 13:10:54 +08:00
parent 36465d81e3
commit c6c78d0c43
17 changed files with 4857 additions and 68 deletions

View File

@@ -157,6 +157,31 @@ module.exports = (db) => {
allowNull: true,
defaultValue: ''
},
// 文本匹配分析结果
textMatchScore: {
comment: '文本匹配综合评分',
type: Sequelize.INTEGER,
allowNull: true,
defaultValue: 0
},
matchSuggestion: {
comment: '投递建议',
type: Sequelize.STRING(200),
allowNull: true,
defaultValue: ''
},
matchConcerns: {
comment: '关注点(JSON数组)',
type: Sequelize.TEXT,
allowNull: true,
defaultValue: '[]'
},
textMatchAnalysis: {
comment: '文本匹配详细分析结果(JSON)',
type: Sequelize.TEXT,
allowNull: true,
defaultValue: ''
},
outsourcingAnalysis: {
comment: '外包识别分析结果',
type: Sequelize.TEXT,