WebCAD-Lib-TS API 文档 - v1.0.0
    Preparing search index...

    Interface ConflictItem

    冲突项信息

    interface ConflictItem {
        id: string;
        type: ConflictType;
        description: string;
        localValue?: any;
        remoteValue?: any;
        baseValue?: any;
        entityId?: number;
        layerId?: string;
        propertyName?: string;
        localModifiedAt?: Date;
        remoteModifiedAt?: Date;
    }
    Index

    Properties

    id: string

    冲突ID

    冲突类型

    description: string

    冲突描述

    localValue?: any

    本地值

    remoteValue?: any

    远程值

    baseValue?: any

    基础值(共同祖先)

    entityId?: number

    相关实体ID

    layerId?: string

    相关图层ID

    propertyName?: string

    相关属性名

    localModifiedAt?: Date

    本地修改时间

    remoteModifiedAt?: Date

    远程修改时间