import { IParam } from './i-param'; /** * 操作结果 */ export interface IActionResult { /** * 是否成功 */ ok: boolean; /** * 响应数据 */ data: IParam[] | null; }