Skip to content

Commit

Permalink
chore: 更新接口定义
Browse files Browse the repository at this point in the history
  • Loading branch information
sushi-su committed Aug 13, 2023
1 parent a94eb74 commit 8b1f71d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions src/services/gen/data-contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export interface RVoid {
/** 消息内容 */
msg: string;
/** 数据对象 */
data: object;
data: Record<string, any>;
}

/** 代码生成分页查询对象 */
Expand Down Expand Up @@ -127,10 +127,10 @@ export interface GenTable {
/** 上级菜单名称字段 */
parentMenuName?: string;
/** 传入参数(暂时预留) */
params?: Record<string, string>;
crud?: boolean;
sub?: boolean;
params?: Record<string, any>;
tree?: boolean;
sub?: boolean;
crud?: boolean;
}

/** 代码生成业务字段实体对象 */
Expand Down Expand Up @@ -202,16 +202,16 @@ export interface GenTableColumn {
*/
sort?: number;
list?: boolean;
capJavaField?: string;
required?: boolean;
pk?: boolean;
insert?: boolean;
edit?: boolean;
usableColumn?: boolean;
superColumn?: boolean;
capJavaField?: string;
required?: boolean;
query?: boolean;
voRequired?: boolean;
increment?: boolean;
voRequired?: boolean;
}

/** 分页数据对象 */
Expand Down Expand Up @@ -248,7 +248,7 @@ export interface RMapStringString {
/** 消息内容 */
msg: string;
/** 数据对象 */
data: Record<string, string>;
data: Record<string, any>;
}

/** 代码生成业务信息对象 */
Expand Down
12 changes: 6 additions & 6 deletions src/services/system/data-contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export interface RVoid {
/** 消息内容 */
msg: string;
/** 数据对象 */
data: object;
data: Record<string, any>;
}

/** 已登录用户信息更新业务对象 */
Expand Down Expand Up @@ -452,12 +452,12 @@ export interface RListTreeLong {

export interface TreeLong {
config?: TreeNodeConfig;
weight?: object;
weight?: Record<string, any>;
/** @format int64 */
parentId?: number;
/** @format int64 */
id?: number;
name?: object;
name?: Record<string, any>;
empty?: boolean;
[key: string]: any;
}
Expand Down Expand Up @@ -3218,7 +3218,7 @@ export interface RMapStringObject {
/** 消息内容 */
msg: string;
/** 数据对象 */
data: Record<string, object>;
data: Record<string, any>;
}

/** 响应信息主体 */
Expand Down Expand Up @@ -3508,11 +3508,11 @@ export interface TableDataSysUserOnlineVo {
/** 缓存监控详细信息返回对象 */
export interface CacheInfoVo {
/** 缓存服务器原始配置信息 */
info?: Record<string, string>;
info?: Record<string, any>;
/** 数据库大小 */
dbSize?: string;
/** redis命令统计 */
commandStats?: Record<string, string>[];
commandStats?: Record<string, any>[];
}

/** 响应信息主体 */
Expand Down

0 comments on commit 8b1f71d

Please sign in to comment.