Files
scrq-hd/.svn/pristine/05/0563b5fecb16420cf27c18ab8702da3e04f53b99.svn-base
2025-07-03 10:34:04 +08:00

13 lines
255 B
Plaintext

import axios from './http'
export default class SerialCheck {
getList(params) {
return axios.get('/exec/exec/snCheck/list', { params })
}
check(params) {
params.type = true
return axios.post('/exec/exec/snCheck/checkSn', params)
}
}