设备故障管理演示应用-前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

32 lines
1.2 KiB

import {
DynamicFormValueControlModelConfig,
DynamicFormValueControlModel,
serializable,
DynamicFormControlLayout,
} from '@athena/dynamic-core';
import { DefaultModelConfig, StateCode } from '../model';
export const DYNAMIC_CUSTOM__ATHENA_FAULT_PLAN_OPERATE_FILED = 'operate_filed';
export class DynamicFaultPlanOperateFiledModel extends DynamicFormValueControlModel<any> {
@serializable() readonly type: string = DYNAMIC_CUSTOM__ATHENA_FAULT_PLAN_OPERATE_FILED;
@serializable() stateCode?: StateCode;
@serializable() actions?: any[];
@serializable() operations?: any[];
@serializable() finished?: boolean;
@serializable() extendedFields: any;
@serializable() attach: any;
@serializable() config: any;
constructor(config: DefaultModelConfig, layout?: DynamicFormControlLayout) {
super(config, layout);
this.type = config?.type;
this.stateCode = config?.stateCode;
this.actions = config?.actions ?? [];
this.operations = config?.operations ?? [];
this.finished = config?.finished ?? false;
this.extendedFields = config?.extendedFields ?? null;
this.attach = config?.attach ?? null;
this.config = config;
}
}