|
/*患者高血压记录API接口
|
id// 自增ID serialnum// 流水号 recordtime// 记录时间 typename// 数据类型 systolicpressure// 收缩压 diastolicpressure// 舒张压 sourcename// 数据来源 orgid// 机构ID del_flag// 删除标记 update_by// 更新人 update_time// 更新时间 create_by// 创建人 create_time// 创建时间 isupload// 上传标记 upload_time// 上传时间 patid// 档案ID heartrate// 心率 visittype// 就诊类型 visitid// 就诊ID pid//父ID guid//GUID
|
*/
|
import request from '@/utils/request'
|
|
export function slavelistpat_med_hypertension(query) {
|
return request({
|
url: 'proc/smartor/entity/patient/pat_med_hypertension/slavelist',
|
method: 'get',
|
params: query
|
})
|
}
|
|
/*
|
功能: 读取列表信息
|
参数:query 指定查询参数
|
*/
|
export function listpat_med_hypertension(query) {
|
return request({
|
url: 'proc/smartor/entity/patient/pat_med_hypertension/list',
|
method: 'get',
|
params: query
|
})
|
}
|
|
/*
|
功能: 根据id读取指定对象信息
|
参数:query 指定查询参数
|
*/
|
export function getpat_med_hypertension(id) {
|
return request({
|
url: 'proc/smartor/entity/patient/pat_med_hypertension/' + id,
|
method: 'get'
|
})
|
}
|
|
/*
|
功能: 增加对象
|
参数:data 对象数据
|
*/
|
export function addpat_med_hypertension(data) {
|
return request({
|
url: 'proc/smartor/entity/patient/pat_med_hypertension/add',
|
method: 'post',
|
data: data
|
})
|
}
|
|
/*
|
功能: 更新对象
|
参数:data 对象数据
|
*/
|
export function updatepat_med_hypertension(data) {
|
return request({
|
url: 'proc/smartor/entity/patient/pat_med_hypertension/update',
|
method: 'put',
|
data: data
|
})
|
}
|
|
/*
|
功能: 删除对象
|
参数:objid 对象ID
|
*/
|
export function delpat_med_hypertension(id) {
|
return request({
|
url: 'proc/smartor/entity/patient/pat_med_hypertension/del/' +id,
|
method: 'delete'
|
})
|
}
|