22 lines
414 B
TypeScript
22 lines
414 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 {
|
||
|
|
key: string;
|
||
|
|
page: any;
|
||
|
|
limit: any;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type AccountListGetResultModel = BasicFetchResult<AccountListItem>;
|