3 changed files with 41 additions and 3 deletions
@ -0,0 +1,17 @@
@@ -0,0 +1,17 @@
|
||||
import type { R } from '/#/axios'; |
||||
import type { Page, CommonEntity } from '/@/api/common/data/entity'; |
||||
|
||||
export type GencodeCustomObjParams = Page & GencodeCustomObj; |
||||
|
||||
export interface GencodeCustomObj extends CommonEntity { |
||||
id: string; |
||||
label: string; |
||||
value: string; |
||||
dataUrl: string; |
||||
tableName: string; |
||||
sort: number; |
||||
type: string; |
||||
[key: string]: any; |
||||
} |
||||
|
||||
export type GencodeCustomObjResult = R<GencodeCustomObj[]>; |
@ -0,0 +1,16 @@
@@ -0,0 +1,16 @@
|
||||
import type { R } from '/#/axios'; |
||||
import type { Page } from '/@/api/common/data/entity'; |
||||
import type { BaseEntity } from '/@/api/common/base/entity'; |
||||
|
||||
export type GencodeCustomFieldParams = Page & GencodeCustomField; |
||||
|
||||
export interface GencodeCustomField extends BaseEntity { |
||||
id: string; |
||||
name: string; |
||||
objId: string; |
||||
sort: number; |
||||
remarks: string; |
||||
[key: string]: any; |
||||
} |
||||
|
||||
export type GencodeCustomFieldResult = R<GencodeCustomField[]>; |
Loading…
Reference in new issue