import {fetchBase} from '@/api/doctor/doctorFetch'

//查询居民信息
export function getChronicResidentsId(residentInfoId) {
    return fetchBase({ url: `/v1/chronic-residents-record/resident-info`,body:{"residentInfoId":residentInfoId},loading: true})
}

// 主键查询
export function fetchCurrencyById(params) {
    return fetchBase({ url: `/v1/chronic-visit-currency/record`, body: params, loading: true })
}