1
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user