jiangping
2024-06-20 09da100729793848bc01b51f7b05ca3f1e7ec64f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import request from '../../utils/request'
 
// 导入模板
export function importExcel (data) {
    return request.post(`/business/worktype/importExcel`, data)
}
 
// 查询全部工种
export function all (data) {
    return request.post(`/business/worktype/list`, data)
}
 
// 根据条件工种列表
export function findListByDTO (data) {
    return request.post('/business/worktype/findListByDTO', data)
}