去掉无用文件

This commit is contained in:
lixiao 2025-03-04 09:24:17 +08:00
parent 922f1bc413
commit f28fae259d
5 changed files with 0 additions and 363 deletions

View File

@ -1,116 +0,0 @@
// @ts-ignore
/* eslint-disable */
import request from '../common/utils/http';
/** 4.考车自检项目信息读取 考车自检项目信息读取 POST /exam/carConfigurationInfo.ws */
export async function carConfigurationInfoUsingPost(
body: API.Pinyin_34,
options?: { [key: string]: any },
) {
return request<API.ROf11>('/exam/carConfigurationInfo.ws', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}
/** 6.随车考试员登录 随车考试员登录 POST /exam/examinerLogin.ws */
export async function examinerLoginUsingPost(
body: API.Pinyin_39,
options?: { [key: string]: any },
) {
return request<API.ROf12>('/exam/examinerLogin.ws', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}
/** 3.获取考点系统参数 考车从考试中心获取考点系统参数即考试平台的exam_point_config表 POST /exam/initSysset300.ws */
export async function initExamPointConfigUsingPost(
body: API.Pinyin_33,
options?: { [key: string]: any },
) {
return request<API.ROfListOfobject>('/exam/initSysset300.ws', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}
/** 8.考车考点信息查询 考车考点信息查询 POST /exam/queryVehiclePoint.ws */
export async function queryVehiclePointUsingPost(
body: API.Pinyin_28,
options?: { [key: string]: any },
) {
return request<API.ROfobject>('/exam/queryVehiclePoint.ws', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}
/** 1.终端设备注册 包括但不限于考车、闸机 POST /exam/registrationDeviceNo.ws */
export async function registrationDeviceNoUsingPost(
body: API.Pinyin_23,
options?: { [key: string]: any },
) {
return request<API.ROfobject>('/exam/registrationDeviceNo.ws', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}
/** 2.终端初始化时间同步 终端初始化时间同步 POST /exam/timeSynchronization.ws */
export async function timeSynchronizationUsingPost(options?: { [key: string]: any }) {
return request<API.ROf9>('/exam/timeSynchronization.ws', {
method: 'POST',
...(options || {}),
});
}
/** 5.考车自检结果写入 考车自检结果写入 POST /exam/uploadExamCarCheckResult.ws */
export async function uploadExamCarCheckResultUsingPost(
body: API.Pinyin_29,
options?: { [key: string]: any },
) {
return request<API.ROfobject>('/exam/uploadExamCarCheckResult.ws', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}
/** 7.考车日志信息上传 考车日志信息上传 POST /exam/uploadVehicleLog.ws */
export async function uploadVehicleLogUsingPost(
body: API.Pinyin_27,
options?: { [key: string]: any },
) {
return request<API.ROfobject>('/exam/uploadVehicleLog.ws', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}

View File

@ -1,78 +0,0 @@
// @ts-ignore
/* eslint-disable */
import request from '../common/utils/http';
/** 3.考车对考生缺考操作 考车对考生缺考操作 POST /exam/examinationStuAbsent.ws */
export async function examinationStuAbsentUsingPost(
body: API.Pinyin_26,
options?: { [key: string]: any },
) {
return request<API.ROfobject>('/exam/examinationStuAbsent.ws', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}
/** 2.断点续考 断点续考获取考试项目 POST /exam/getExaminationItem.ws */
export async function getExaminationItemUsingPost(
body: API.Pinyin_18,
options?: { [key: string]: any },
) {
return request<API.ROf8>('/exam/getExaminationItem.ws', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}
/** 1.下载考生信息 考车端通过此接口下载监管(或本地随机)分配的考生信息 POST /exam/getExaminationStudentInfo.ws */
export async function getExaminationStudentInfoUsingPost(
body: API.Pinyin_3,
options?: { [key: string]: any },
) {
return request<API.ROf_>('/exam/getExaminationStudentInfo.ws', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}
/** 4.上传考试过程数据文件 上传考试过程数据文件 POST /exam/uploadExamDataFile.ws */
export async function uploadExamDataFileUsingPost(
body: API.Pinyin_2,
options?: { [key: string]: any },
) {
return request<API.ROfobject>('/exam/uploadExamDataFile.ws', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}
/** 5.上传考生考试里程 上传考生考试里程 POST /exam/uploadExamMileage.ws */
export async function uploadExamMileageUsingPost(
body: API.Pinyin__,
options?: { [key: string]: any },
) {
return request<API.ROfobject>('/exam/uploadExamMileage.ws', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}

View File

@ -1,75 +0,0 @@
// @ts-ignore
/* eslint-disable */
import request from '../common/utils/http';
/** 4.数据更新 数据更新:照片,指纹,随机序号,监管签到,状态等操作 POST /data/getAccessControlInfo.ws */
export async function getAccessControlInfoUsingPost(
body: API.Pinyin_30,
options?: { [key: string]: any },
) {
return request<API.ROfobject>('/data/getAccessControlInfo.ws', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}
/** 2.身份合法性判断 身份合法性判断:约考信息下载,收费查询,场次控制等 POST /data/getAccessStuInfo.ws */
export async function getAccessStuInfoUsingPost(
body: API.Pinyin_36,
options?: { [key: string]: any },
) {
return request<API.ROfobject>('/data/getAccessStuInfo.ws', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}
/** 1.门禁版本控制 门禁版本控制 POST /exam/gateLoginInit.ws */
export async function getLoginInitUsingPost(body: API.Pinyin_38, options?: { [key: string]: any }) {
return request<API.ROfobject>('/exam/gateLoginInit.ws', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}
/** 3.门禁/考车终端人脸识别 门禁/考车终端人脸识别 POST /imageCompare/base64ImageStrCompare.ws */
export async function base64ImageStrCompareUsingPost(
body: API.Pinyin_37,
options?: { [key: string]: any },
) {
return request<API.ROfobject>('/imageCompare/base64ImageStrCompare.ws', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}
/** 5.考官/随车考试员闸机人脸识别 考官/随车考试员闸机人脸识别,此处安全员是代替没有身份证学员人脸识别 POST /pmUserCheckCardNoFace.ws */
export async function examManFaceRecognitionUsingPost(
body: API.Pinyin_25,
options?: { [key: string]: any },
) {
return request<API.ROfobject>('/pmUserCheckCardNoFace.ws', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}

View File

@ -1,63 +0,0 @@
// @ts-ignore
/* eslint-disable */
import request from '../common/utils/http';
/** 3.合成视频监测 合成视频监测 POST /data/compositedVideosMonitor.ws */
export async function compositedVideosMonitorUsingPost(
body: API.Pinyin_11,
options?: { [key: string]: any },
) {
return request<API.ROfobject>('/data/compositedVideosMonitor.ws', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}
/** 1.场地摄像头设备信息 场地摄像头设备信息--科目二三都调用此接口科三只有贵州在用2022-10-13 POST /data/getKm2FieldGunCameraInfo.ws */
export async function getKm2FieldGunCameraInfoUsingPost(
body: API.Pinyin_11,
options?: { [key: string]: any },
) {
return request<API.ROf4>('/data/getKm2FieldGunCameraInfo.ws', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}
/** 4.获取考生考试信息 获取考生考试信息 POST /data/getStudExamInfo.ws */
export async function getStudExamInfoUsingPost(
body: API.Pinyin_17,
options?: { [key: string]: any },
) {
return request<API.ROf7>('/data/getStudExamInfo.ws', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}
/** 2.小红求获取扣分信息(参数平台接口) 小红求获取扣分信息-(视频合成用-小红球程序-放在参数平台) POST /data/obtainMarkRuleSetInfo.ws */
export async function obtainMarkRuleSetInfoUsingPost(
body: API.Pinyin_15,
options?: { [key: string]: any },
) {
return request<API.ROf6>('/data/obtainMarkRuleSetInfo.ws', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}

View File

@ -1,31 +0,0 @@
// @ts-ignore
/* eslint-disable */
import request from '../common/utils/http';
/** 2.考试中心执行参数同步 由外部(考试平台)调用,主动请求参数平台同步基础数据 GET /system/doParamBaseDataSync */
export async function doParamBaseDataSyncUsingGet(options?: { [key: string]: any }) {
return request<API.ROfobject>('/system/doParamBaseDataSync', {
method: 'GET',
...(options || {}),
});
}
/** 3.考试中心执行参数数据同步 由外部(考试平台)调用,主动请求参数平台同步参数数据 GET /system/doParamConfigDataSync */
export async function doParamConfigDataSyncUsingGet(options?: { [key: string]: any }) {
return request<API.ROfobject>('/system/doParamConfigDataSync', {
method: 'GET',
...(options || {}),
});
}
/** 1.用户登录 用户登录接口获取用户相关信息和登录Token登录后调用后台接口时将Token放到请求头中 POST /system/userLogin.do */
export async function userLoginUsingPost(body: API.Pinyin_21, options?: { [key: string]: any }) {
return request<API.ROfobject>('/system/userLogin.do', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=UTF-8',
},
data: body,
...(options || {}),
});
}