38 lines
722 B
TypeScript
38 lines
722 B
TypeScript
interface ResRound {
|
|
createdAt: Date;
|
|
createdFullName: string;
|
|
createdUserId: Date;
|
|
durationKPI: string;
|
|
endDate: Date;
|
|
id: Date;
|
|
lastUpdateFullName: string;
|
|
lastUpdateUserId: Date;
|
|
lastUpdatedAt: Date;
|
|
startDate: Date;
|
|
}
|
|
|
|
interface ResLog {
|
|
id: string;
|
|
endTimeStamp: Date;
|
|
dataDiff?: {
|
|
//
|
|
before: string;
|
|
after: string;
|
|
};
|
|
endpoint: string; //
|
|
host: string; //
|
|
logType: string; //
|
|
method: string; //
|
|
processTime: number;
|
|
responseCode: number; //
|
|
startTimeStamp: Date;
|
|
systemName: string;
|
|
username: string; //
|
|
responseDescription: string; //
|
|
sequence: Record<string, any>;
|
|
tId: string;
|
|
input: string;
|
|
output: string;
|
|
}
|
|
|
|
export type { ResRound, ResLog };
|