fix: 🐛 统一主键为 string 类型

This commit is contained in:
Ray.Hao
2025-04-02 19:01:00 +08:00
parent 57e6033b80
commit ab3584fcf4
21 changed files with 67 additions and 67 deletions

View File

@@ -110,7 +110,7 @@ export interface TablePageVO {
/** 代码生成配置表单 */
export interface GenConfigForm {
/** 主键 */
id?: number;
id?: string;
/** 表名 */
tableName?: string;
@@ -131,7 +131,7 @@ export interface GenConfigForm {
author?: string;
/** 上级菜单 */
parentMenuId?: number;
parentMenuId?: string;
/** 后端应用名 */
backendAppName?: string;
@@ -145,7 +145,7 @@ export interface GenConfigForm {
/** 字段配置 */
export interface FieldConfig {
/** 主键 */
id?: number;
id?: string;
/** 列名 */
columnName?: string;