import { httpGET, httpPOST } from '../common/httpFetch' export const getAttendanceList = body => { return httpGET('data/api-d/device/findAttendanceList', { body }) } /** * punchTime 打卡记录时间 * isUse 是否启用规则 * startTime 上班时间 * endTime 下班时间 * sInputM 迟到时间阈值 * eInputM 早退时间阈值 * checked 通知App */ export const addSet = body => { console.log(body) return httpPOST('data/api-d/device/add', { body }) }