import request from './request' export function listComfort(query) { return request.get({ url: '/comfort', query }) } export function getComfort(id) { return request.get({ url: '/comfort/' + id }) } export function addComfort(body) { return request.post({ url: '/comfort', body }) } export function listRightPersonByDepartId(departId) { return request.get({ url: '/rightPerson/depart/' + departId }) }