/** * Transit * @cloud */ export interface TransitProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 过程列表 */ transitList: TransitType[]; } export interface TransitType { /** * 过程代码 */ action: string; /** * 过程文本 */ actionText: string; /** * 过程详细信息 */ message: string; /** * 处理时间 */ time: string; }