lin
2024-05-14 0beea067bea14aeaa8ed0d8ee3cf4d2117f3cd2e
1
2
3
4
5
6
7
8
9
import http from '@/http/api.js'
 
export const addCheckIn = (params) => {
    return http.request({
        url: '/blade-checkInRecords/checkInRecords/save',
        method: 'POST',
        data: params
    })
}