自然语言抵扣金信息解析为抵扣金

This commit is contained in:
zhonghua.li
2026-05-21 16:07:25 +08:00
parent f1ce746af0
commit e7ecb0a9a6
2 changed files with 53 additions and 1 deletions

View File

@@ -30,3 +30,13 @@ export function deleteLbDeductionAmount(id) {
method: 'delete'
})
}
/** 大模型解析抵扣金文本并保存,请求可能较慢 */
export function parseLbDeductionAmountFromText(data) {
return request({
url: '/lbDeductionAmount/parseFromText',
method: 'post',
data,
timeout: 120000
})
}