|
/*患者检查检验记录子表API接口
|
id// 自增ID inspectionid// 对应记录表 relationid// 相应ID relationcode// 相应编号 relationname// 相应名称 value// 结果值/结论 isabnormal// 是否异常 unit// 单位 consult// 参考 orgid// 机构ID del_flag// 删除标记 update_by// 更新人 update_time// 更新时间 create_by// 创建人 create_time// 创建时间 isupload// 上传标记 upload_time// 上传时间 pid//父ID guid//GUID
|
*/
|
import request from '@/utils/request'
|
|
export function slavelistpat_med_inspection_item(query) {
|
return request({
|
url: 'proc/smartor/entity/patient/pat_med_inspection_item/slavelist',
|
method: 'get',
|
params: query
|
})
|
}
|
|
/*
|
功能: 读取列表信息
|
参数:query 指定查询参数
|
*/
|
export function listpat_med_inspection_item(query) {
|
return request({
|
url: 'proc/smartor/entity/patient/pat_med_inspection_item/list',
|
method: 'get',
|
params: query
|
})
|
}
|
|
/*
|
功能: 根据id读取指定对象信息
|
参数:query 指定查询参数
|
*/
|
export function getpat_med_inspection_item(id) {
|
return request({
|
url: 'proc/smartor/entity/patient/pat_med_inspection_item/' + id,
|
method: 'get'
|
})
|
}
|
|
/*
|
功能: 增加对象
|
参数:data 对象数据
|
*/
|
export function addpat_med_inspection_item(data) {
|
return request({
|
url: 'proc/smartor/entity/patient/pat_med_inspection_item/add',
|
method: 'post',
|
data: data
|
})
|
}
|
|
/*
|
功能: 更新对象
|
参数:data 对象数据
|
*/
|
export function updatepat_med_inspection_item(data) {
|
return request({
|
url: 'proc/smartor/entity/patient/pat_med_inspection_item/update',
|
method: 'put',
|
data: data
|
})
|
}
|
|
/*
|
功能: 删除对象
|
参数:objid 对象ID
|
*/
|
export function delpat_med_inspection_item(id) {
|
return request({
|
url: 'proc/smartor/entity/patient/pat_med_inspection_item/del/' +id,
|
method: 'delete'
|
})
|
}
|