2024-06-08 17:44:24 +08:00
|
|
|
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 {
|
2024-06-11 16:18:01 +08:00
|
|
|
id: string;
|
2024-06-08 17:44:24 +08:00
|
|
|
key: string;
|
|
|
|
|
page: any;
|
|
|
|
|
limit: any;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type AccountListGetResultModel = BasicFetchResult<AccountListItem>;
|