import { httpPOST } from './common/httpFetch'
|
|
/**
|
* @description 查询多人某月考勤记录(考勤报表)
|
* @param { string } mouthDate 年-月
|
* @param { string } gradeValue 年级
|
* @param { string } classValue 班级
|
*/
|
export const getMorePersonMouthData = body => {
|
return httpPOST('data/api-a/att/morequery', {
|
body
|
})
|
}
|
/**
|
* @description 查询单人某月考勤记录
|
* @param { string } mouthDate 年-月
|
* @param { string } personId 查询人id
|
*/
|
export const getPersonMouthData = body => {
|
return httpPOST('data/api-a/att/queryperson', {
|
body
|
})
|
}
|
/**
|
* @description 修改某人某天考勤记录
|
* @param { string } recordId 考勤记录Id
|
* @param { string } mouthDay 年-月-日
|
* @param { string } leaveOrRepair leave 请假 repair 补签
|
*/
|
export const getEditAttend = body => {
|
return httpPOST('data/api-a/att/updateRecord', {
|
body
|
})
|
}
|