11 lines
189 B
TypeScript
11 lines
189 B
TypeScript
export interface Spel {
|
|
id: number;
|
|
componentName: string;
|
|
methodName: string;
|
|
methodParams: string;
|
|
viewSpel: string;
|
|
status: string;
|
|
remark: string;
|
|
createTime: string;
|
|
}
|