|
/*检查字典API接口
|
inspectid// 自增ID inspectname// 检查项目名称 inspectcode// 检查项目编码 centerid// 中心ID centername// 中心名称 centercode// 中心代码 orgid//医院机构id del_flag// 删除标记 update_by// 更新人 update_time// 更新时间 create_by// 创建人 create_time// 创建时间 isupload// 上传标记 upload_time// 上传时间 isenable// 是否启用 pid//父ID guid//GUID
|
*/
|
import request from '@/utils/request'
|
|
export function slavelistbase_dict_inspect(query) {
|
return request({
|
url: 'proc/smartor/entity/base/base_dict_inspect/slavelist',
|
method: 'get',
|
params: query
|
})
|
}
|
|
/*
|
功能: 读取列表信息
|
参数:query 指定查询参数
|
*/
|
export function listbase_dict_inspect(query) {
|
return request({
|
url: 'proc/smartor/entity/base/base_dict_inspect/list',
|
method: 'get',
|
params: query
|
})
|
}
|
|
/*
|
功能: 根据id读取指定对象信息
|
参数:query 指定查询参数
|
*/
|
export function getbase_dict_inspect(inspectid) {
|
return request({
|
url: 'proc/smartor/entity/base/base_dict_inspect/' + inspectid,
|
method: 'get'
|
})
|
}
|
|
/*
|
功能: 增加对象
|
参数:data 对象数据
|
*/
|
export function addbase_dict_inspect(data) {
|
return request({
|
url: 'proc/smartor/entity/base/base_dict_inspect/add',
|
method: 'post',
|
data: data
|
})
|
}
|
|
/*
|
功能: 更新对象
|
参数:data 对象数据
|
*/
|
export function updatebase_dict_inspect(data) {
|
return request({
|
url: 'proc/smartor/entity/base/base_dict_inspect/update',
|
method: 'put',
|
data: data
|
})
|
}
|
|
/*
|
功能: 删除对象
|
参数:objid 对象ID
|
*/
|
export function delbase_dict_inspect(inspectid) {
|
return request({
|
url: 'proc/smartor/entity/base/base_dict_inspect/del/' +inspectid,
|
method: 'delete'
|
})
|
}
|