|   | 
|     /*患者体检记录API接口 | 
|           id// 自增ID     serialnum// 流水号     patid// 档案ID     drcode// 总结医生工号     drname// 总结医生名称     hospitalcode// 体检单位/医院编号     hospitalname// 体检单位/医院     physicaldate// 体检时间     orgid// 机构ID     del_flag// 删除标记     update_by// 更新人     update_time// 更新时间     create_by// 创建人     create_time// 创建时间     isupload// 上传标记     upload_time// 上传时间     deptcode// 科室代码     deptname// 科室名称     projectname// 体检项目名称     projectcode// 体检项目编码     state// 状态    schemestatus// 是否生成方案状态    generalschemestatus// 是否生成通用方案状态    deptid// 科室ID     projectid// 体检套餐ID     schemetime// 方案状态操作时间     pid//父ID    guid//GUID  | 
|     */ | 
|     import request from '@/utils/request' | 
|   | 
|     export function slavelistpat_med_physical(query) { | 
|       return request({ | 
|         url: 'proc/smartor/entity/patient/pat_med_physical/slavelist', | 
|         method: 'get', | 
|         params: query | 
|       }) | 
|     } | 
|   | 
|     /* | 
|         功能: 读取列表信息 | 
|         参数:query 指定查询参数  | 
|     */ | 
|     export function listpat_med_physical(query) { | 
|       return request({ | 
|         url: 'proc/smartor/entity/patient/pat_med_physical/list', | 
|         method: 'get', | 
|         params: query | 
|       }) | 
|     } | 
|   | 
|     /* | 
|         功能: 根据id读取指定对象信息 | 
|         参数:query 指定查询参数 | 
|     */ | 
|     export function getpat_med_physical(id) { | 
|       return request({ | 
|         url: 'proc/smartor/entity/patient/pat_med_physical/' + id, | 
|         method: 'get' | 
|       }) | 
|     } | 
|   | 
|     /* | 
|         功能: 增加对象 | 
|         参数:data 对象数据 | 
|     */ | 
|     export function addpat_med_physical(data) { | 
|       return request({ | 
|         url: 'proc/smartor/entity/patient/pat_med_physical/add', | 
|         method: 'post', | 
|         data: data | 
|       }) | 
|     } | 
|   | 
|     /* | 
|         功能: 更新对象 | 
|         参数:data 对象数据 | 
|     */ | 
|     export function updatepat_med_physical(data) { | 
|       return request({ | 
|         url: 'proc/smartor/entity/patient/pat_med_physical/update', | 
|         method: 'put', | 
|         data: data | 
|       }) | 
|     } | 
|   | 
|     /* | 
|         功能: 删除对象 | 
|         参数:objid 对象ID | 
|     */ | 
|     export function delpat_med_physical(id) { | 
|       return request({ | 
|         url: 'proc/smartor/entity/patient/pat_med_physical/del/' +id, | 
|         method: 'delete' | 
|       }) | 
|     } |