ebike-plus-wx-maintenance/src/api/centerControl.ts

9 lines
228 B
TypeScript
Raw Normal View History

2025-10-31 11:29:01 +08:00
import { http } from '@/http/http'
/**
* SN或BikeCode
*/
export function checkSnOrBikeCodeAPI(query: { ecuSn: string, bikeCode: string }) {
return http.get<any>('/operations/ebikeEcuInfo/checkSnOrBikeCode', query)
}