แก้ 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 {
endTimeStamp: Date;
endpoint: string;
host: string;
logType: string;
method: string;
dataDiff?: {
//
before: string;
after: string;
};
endpoint: string; //
host: string; //
logType: string; //
method: string; //
processTime: number;
responseCode: number;
responseCode: number; //
startTimeStamp: Date;
systemName: string;
username: string; //
responseDescription: string; //
tId: string;
}