You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
421 B
17 lines
421 B
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 }) |
|
} |