shuishen
2024-03-22 e0fc3af465e71bb4252c8acb49e9b1e0955381f3
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
    })
}