แก้ type ResLog

This commit is contained in:
Net 2024-07-24 10:45:41 +07:00 committed by Net
parent 937af9b1db
commit e8ed922ff5

View file

@ -13,14 +13,21 @@ interface ResRound {
interface ResLog { interface ResLog {
endTimeStamp: Date; endTimeStamp: Date;
endpoint: string; dataDiff?: {
host: string; //
logType: string; before: string;
method: string; after: string;
};
endpoint: string; //
host: string; //
logType: string; //
method: string; //
processTime: number; processTime: number;
responseCode: number; responseCode: number; //
startTimeStamp: Date; startTimeStamp: Date;
systemName: string; systemName: string;
username: string; //
responseDescription: string; //
tId: string; tId: string;
} }