You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
426 B
27 lines
426 B
|
1 year ago
|
declare namespace API {
|
||
|
|
type DictType = {
|
||
|
|
id?: string;
|
||
|
|
name: string;
|
||
|
|
};
|
||
|
|
|
||
|
|
type DeleteDictParams = {
|
||
|
|
id: string;
|
||
|
|
};
|
||
|
|
|
||
|
|
type DeleteBatchDictParams = string[];
|
||
|
|
|
||
|
|
type DictValueType = {
|
||
|
|
id?: string;
|
||
|
|
fieldTypeId: string;
|
||
|
|
fieldValue: string;
|
||
|
|
enable: string;
|
||
|
|
pendingStatus?: boolean;
|
||
|
|
};
|
||
|
|
|
||
|
|
type DeleteDictValueParams = {
|
||
|
|
id: string;
|
||
|
|
};
|
||
|
|
|
||
|
|
type DeleteBatchDictValueParams = string[];
|
||
|
|
}
|