Fixiaobai
2023-11-15 5ff704af11fc13dd48a48e133652faf1e13d178d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import request from '@/router/axios'
 
export function addShiftWage(obj) {
  return request({
    url: '/mes/shiftWage',
    method: 'post',
    data: obj
  })
}
 
export function getShiftWageByDutyRecordId(dutyRecordId) {
  return request({
    url: '/mes/shiftWage/' + dutyRecordId,
    method: 'get'
  })
}
 
export function qryShiftWageByDutyRecordIdList(ids) {
  return request({
    url: '/mes/shiftWage/qryShiftWageByDutyRecordIdList',
    method: 'get',
    params: { dutyRecordIdList: ids }
  })
}
 
export function summary(dutyRecordId) {
  return request({
    url: '/mes//shiftWage/summary/' + dutyRecordId,
    method: 'get'
  })
}
export function summaryAll(ids) {
  return request({
    url: '/mes//shiftWage/summaryAll',
    method: 'get',
    params: { dutyRecordIdList: ids }
  })
}
 
export function countSalary(obj) {
  return request({
    url: '/mes/shiftWage/count',
    method: 'post',
    data: obj
  })
}