wujingjing
2024-05-17 1c8b789894e34f697e23a1a82bdd4d17bb9323a6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import type { AxiosInstance } from 'axios';
import request from '/@/utils/request';
 
/**
 * @summary GetRunRealRecordStdGetLimitByObjectTypeAndObjectIDOfDayRange
 */
export const GetRunRealRecordStdGetLimitByObjectTypeAndObjectIDOfDayRange = (params, req: AxiosInstance = request) => {
    return req({
        url: '/Run/Real/Record/Std/GetLimitByObjectTypeAndObjectIDOfDayRange@V1.0',
        method: 'get',
        params,
    });
};
 
/**
 * @summary GetRunRealRecordStdGetByObjectTypeAndObjectIDOfDayRange
 */
export const GetRunRealRecordStdGetByObjectTypeAndObjectIDOfDayRange = (params, req: AxiosInstance = request) => {
    return req({
        url: '/Run/Real/Record/Std/GetByObjectTypeAndObjectIDOfDayRange@V1.0',
        method: 'get',
        params,
    });
};
 
/**
 * @summary GetRunRealRecordStdGetLastRecord
 */
export const GetRunRealRecordStdGetLastRecord = (params, req: AxiosInstance = request) => {
    return req({
        url: '/Run/Real/Record/Std/GetLastRecord@V1.0',
        method: 'get',
        params,
    });
};