add 模型设计的types

This commit is contained in:
LiuHao 2023-06-13 23:05:27 +08:00
parent a3d425d372
commit 251dd33cbf

View File

@ -0,0 +1,10 @@
export interface ModelForm {
name: string;
key: string;
description: string;
}
export interface ModelQuery extends PageQuery {
name: string;
key: string;
}