diff --git a/src/api/operation/logs/types.ts b/src/api/operation/logs/types.ts index ba162bd6..b9021a70 100644 --- a/src/api/operation/logs/types.ts +++ b/src/api/operation/logs/types.ts @@ -1,145 +1,235 @@ export interface LogsVO { /** - * + * */ id: string | number; /** - * + * */ realIp: string; /** - * + * */ timeLocal: string; /** - * + * */ requestMethod: string; /** - * + * */ requestUri: string; /** - * + * */ userAgent: string; /** - * + * */ requestParams: string; /** - * + * */ userToken: string; /** - * + * */ createdAt: string; + /** + * 手机号 + */ + mobile: string; + + /** + * 用户ID + */ + userId: string | number; + + /** + * + */ + deviceId: string | number; + + /** + * 更新用户信息表, 是否已更新 + */ + isUpdateUser: number; + + /** + * 比赛id + */ + matchId: string | number; + + /** + * + */ + apiNames: string; + } export interface LogsForm extends BaseEntity { /** - * + * */ id?: string | number; /** - * + * */ realIp?: string; /** - * + * */ timeLocal?: string; /** - * + * */ requestMethod?: string; /** - * + * */ requestUri?: string; /** - * + * */ userAgent?: string; /** - * + * */ requestParams?: string; /** - * + * */ userToken?: string; /** - * + * */ createdAt?: string; + /** + * 手机号 + */ + mobile?: string; + + /** + * 用户ID + */ + userId?: string | number; + + /** + * + */ + deviceId?: string | number; + + /** + * 更新用户信息表, 是否已更新 + */ + isUpdateUser?: number; + + /** + * 比赛id + */ + matchId?: string | number; + + /** + * + */ + apiNames?: string; + } export interface LogsQuery extends PageQuery { /** - * + * */ realIp?: string; /** - * + * */ timeLocal?: string; /** - * + * */ requestMethod?: string; /** - * + * */ requestUri?: string; /** - * + * */ userAgent?: string; /** - * + * */ requestParams?: string; /** - * + * */ userToken?: string; /** - * + * */ createdAt?: string; - /** - * 日期范围参数 - */ - params?: any; + /** + * 手机号 + */ + mobile?: string; + + /** + * 用户ID + */ + userId?: string | number; + + /** + * + */ + deviceId?: string | number; + + /** + * 更新用户信息表, 是否已更新 + */ + isUpdateUser?: number; + + /** + * 比赛id + */ + matchId?: string | number; + + /** + * + */ + apiNames?: string; + + /** + * 日期范围参数 + */ + params?: any; } diff --git a/src/views/operation/logs/index.vue b/src/views/operation/logs/index.vue index 6039c279..118f86b2 100644 --- a/src/views/operation/logs/index.vue +++ b/src/views/operation/logs/index.vue @@ -4,13 +4,16 @@