fix:(规则引擎版状态)

master
zhang xu 2024-05-13 22:06:43 +08:00
parent 144817c04b
commit 0fd52a109b
2 changed files with 18 additions and 0 deletions

View File

@ -107,3 +107,12 @@ export function delSource(id) {
method: 'delete'
})
}
// 查询数据字段列表
export function listModel(data) {
return request({
url: '/etl/model/list',
method: 'post',
data: data
})
}

View File

@ -26,6 +26,15 @@ export function addVersion(data) {
})
}
// 获取数据区域列表
export function getDataRegionList(data) {
return request({
url: '/ruleEngine/version/GetDataRegionList',
method: 'post',
data: data
})
}
// 修改【请填写功能名称】
export function updateVersion(data) {
return request({