lin
2024-03-19 a9817042e0e32cdf45b6c88a1fa1fcfb1090b1e0
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
    })
}