first commit
Some checks failed
Node CI / build (14.x, macOS-latest) (push) Has been cancelled
Node CI / build (14.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (14.x, windows-latest) (push) Has been cancelled
Node CI / build (16.x, macOS-latest) (push) Has been cancelled
Node CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (16.x, windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
coverage CI / build (push) Has been cancelled
Node pnpm CI / build (16.x, macOS-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, windows-latest) (push) Has been cancelled

This commit is contained in:
chenshaohua
2025-11-10 16:28:01 +08:00
commit 30c8a7e8cf
465 changed files with 102912 additions and 0 deletions

43
src/types/logs/logininfor.d.ts vendored Normal file
View File

@@ -0,0 +1,43 @@
declare namespace API.Logs {
export interface Logininfor {
infoId: number;
userName: string;
ipaddr: string;
loginLocation: string;
browser: string;
os: string;
status: string;
msg: string;
loginTime: Date;
}
export interface LogininforListParams {
infoId?: string;
userName?: string;
ipaddr?: string;
loginLocation?: string;
browser?: string;
os?: string;
status?: string;
msg?: string;
loginTime?: string;
pageSize?: string;
current?: string;
}
export interface LogininforInfoResult {
code: number;
msg: string;
data: Logininfor;
}
export interface LogininforPageResult {
code: number;
msg: string;
total: number;
rows: Array<Logininfor>;
}
}

57
src/types/logs/mobilelog.d.ts vendored Normal file
View File

@@ -0,0 +1,57 @@
declare namespace API.Logs {
export interface Mobilelog {
operId: number;
title: string;
businessType: number;
method: string;
requestMethod: string;
operatorType: number;
operName: string;
deptName: string;
operUrl: string;
operIp: string;
operLocation: string;
operParam: string;
jsonResult: string;
status: number;
errorMsg: string;
operTime: Date;
}
export interface MobilelogListParams {
operId?: string;
title?: string;
businessType?: string;
method?: string;
requestMethod?: string;
operatorType?: string;
operName?: string;
deptName?: string;
operUrl?: string;
operIp?: string;
operLocation?: string;
operParam?: string;
jsonResult?: string;
status?: string;
errorMsg?: string;
operTime?: string;
pageSize?: string;
current?: string;
}
export interface MobilelogInfoResult {
code: number;
msg: string;
data: Mobilelog;
}
export interface MobilelogPageResult {
code: number;
msg: string;
total: number;
rows: Array<Mobilelog>;
}
}

View File

@@ -0,0 +1,43 @@
declare namespace API.Logs {
export interface MobileLogininfor {
infoId: number;
userName: string;
ipaddr: string;
loginLocation: string;
browser: string;
os: string;
status: string;
msg: string;
loginTime: Date;
}
export interface MobileLogininforListParams {
infoId?: string;
userName?: string;
ipaddr?: string;
loginLocation?: string;
browser?: string;
os?: string;
status?: string;
msg?: string;
loginTime?: string;
pageSize?: string;
current?: string;
}
export interface MobileLogininforInfoResult {
code: number;
msg: string;
data: MobileLogininfor;
}
export interface MobileLogininforPageResult {
code: number;
msg: string;
total: number;
rows: Array<MobileLogininfor>;
}
}

57
src/types/logs/operlog.d.ts vendored Normal file
View File

@@ -0,0 +1,57 @@
declare namespace API.Logs {
export interface Operlog {
operId: number;
title: string;
businessType: number;
method: string;
requestMethod: string;
operatorType: number;
operName: string;
deptName: string;
operUrl: string;
operIp: string;
operLocation: string;
operParam: string;
jsonResult: string;
status: number;
errorMsg: string;
operTime: Date;
}
export interface OperlogListParams {
operId?: string;
title?: string;
businessType?: string;
method?: string;
requestMethod?: string;
operatorType?: string;
operName?: string;
deptName?: string;
operUrl?: string;
operIp?: string;
operLocation?: string;
operParam?: string;
jsonResult?: string;
status?: string;
errorMsg?: string;
operTime?: string;
pageSize?: string;
current?: string;
}
export interface OperlogInfoResult {
code: number;
msg: string;
data: Operlog;
}
export interface OperlogPageResult {
code: number;
msg: string;
total: number;
rows: Array<Operlog>;
}
}