import request,{requestType} from '@/utils/request'
|
|
// 查询生成表数据
|
export const listTable:requestType = (query) => {
|
return request({
|
url: '/tool/gen/list',
|
method: 'get',
|
params: query
|
})
|
}
|
// 查询db数据库列表
|
export const listDbTable:requestType = (query) => {
|
return request({
|
url: '/tool/gen/db/list',
|
method: 'get',
|
params: query
|
})
|
}
|
|
// 查询表详细信息
|
export const getGenTable:requestType = (tableId) => {
|
return request({
|
url: '/tool/gen/' + tableId,
|
method: 'get'
|
})
|
}
|
|
// 修改代码生成信息
|
export const updateGenTable:requestType = (data) => {
|
return request({
|
url: '/tool/gen',
|
method: 'put',
|
data: data
|
})
|
}
|
|
// 导入表
|
export const importTable:requestType = (data) => {
|
return request({
|
url: '/tool/gen/importTable',
|
method: 'post',
|
params: data
|
})
|
}
|
|
// 预览生成代码
|
export const previewTable:requestType = (tableId) => {
|
return request({
|
url: '/tool/gen/preview/' + tableId,
|
method: 'get'
|
})
|
}
|
|
// 删除表数据
|
export const delTable:requestType = (tableId) => {
|
return request({
|
url: '/tool/gen/' + tableId,
|
method: 'delete'
|
})
|
}
|
|
// 生成代码(自定义路径)
|
export const genCode:requestType = (tableName) => {
|
return request({
|
url: '/tool/gen/genCode/' + tableName,
|
method: 'get'
|
})
|
}
|
|
// 同步数据库
|
export const synchDb:requestType = (tableName) => {
|
return request({
|
url: '/tool/gen/synchDb/' + tableName,
|
method: 'get'
|
})
|
}
|