yangyin
2024-11-26 ea24bd60c42e8284415e37e7992768a470abe777
1
2
3
4
5
6
7
8
9
10
11
12
13
import type { AxiosInstance } from 'axios';
import request from '/@/utils/request';
 
/**
 * @summary InsertRunRealRecordInsertLastRecord@V1.0LastRecord
 */
export const InsertLastRunRealRecord = (data, req: AxiosInstance = request) => {
    return req({
        url: '/Run/Real/Record/InsertLastRecord@V1.0',
        method: 'post',
        data,
    });
};