23 lines
428 B
TypeScript
23 lines
428 B
TypeScript
import { BasicFetchResult } from '@/api/model/baseModel';
|
|
|
|
export interface AccountListItem {
|
|
id: string;
|
|
name: string;
|
|
type: any;
|
|
code: any;
|
|
objectId: string;
|
|
objectType: string;
|
|
formula: any;
|
|
}
|
|
/**
|
|
* @description: Request list return value
|
|
*/
|
|
export interface AccountParams {
|
|
id: string;
|
|
key: string;
|
|
page: any;
|
|
limit: any;
|
|
}
|
|
|
|
export type AccountListGetResultModel = BasicFetchResult<AccountListItem>;
|