Commit e86af82e by guoxw

物理表异常字段查询和同步

parent 9b970461
......@@ -68,6 +68,30 @@ export function getAllTemplateField(templateId) {
}
/**
* 查询模板异常字段
* @param templateId
* @returns {*}
*/
export function getTemplateErrorField(templateId) {
return request({
url: `${prefix}/fieldError`,
method: 'get',
params: {templateId}
})
}
/**
* 同步异常字段
*/
export function syncTemplateErrorField(data) {
return request({
url: `${prefix}/syncFieldError`,
method: 'post',
data
})
}
/**
* 查询模板的所有规则数据
* @param templateId
* @returns {*}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment