|  |  |  | 
|---|
|  |  |  | export function getById (id) { | 
|---|
|  |  |  | return request.get(`/business/dispatchUnit/${id}`) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | export function check (data) { | 
|---|
|  |  |  | return request.post('/business/dispatchUnit/check', data) | 
|---|
|  |  |  | } | 
|---|
|  |  |  | export function checkWorktype (data) { | 
|---|
|  |  |  | return request.post('/business/dispatchUnit/checkWorktype', data) | 
|---|
|  |  |  | } | 
|---|
|  |  |  | // 添加工种 | 
|---|
|  |  |  | export function createSolution (data) { | 
|---|
|  |  |  | return request.post('/business/dispatchUnit/createSolution', data) | 
|---|
|  |  |  | 
|---|
|  |  |  | export function editDispatchUnit (data) { | 
|---|
|  |  |  | return request.post('/business/dispatchUnit/editDispatchUnit', data) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 数据列表 | 
|---|
|  |  |  | export function findListByDTO (data) { | 
|---|
|  |  |  | return request.post('/business/dispatchUnit/findListByDTO', data) | 
|---|
|  |  |  | } | 
|---|