工业数字模型驱动引擎-客户端SDK下多维视图&多维分支相关接口说明:示例代码对比

时间:2024-11-04 11:56:36

示例代码对比

本章节以createView/createViewV2接口为例。

表1 示例代码对比

1.24.100以前版本

1.24.100版本

public void test() {
        // 创建VersionViewCreateDTO公共父类的dto对象
        VersionViewCreateDTO dto = new VersionViewCreateDTO();
        dto.setVersionId(1L);
        cbmvFuntionTest01Delegator.createView(dto);
    }
public void test() {
        // 创建CBMVFuntionTest01VersionViewCreateDTO子类的dto对象
        CBMVFuntionTest01VersionViewCreateDTO dto = new CBMVFuntionTest01VersionViewCreateDTO();
        dto.setVersionId(1L);
        cbmvFuntionTest01Delegator.createViewV2(dto);
    }
support.huaweicloud.com/sdkreference-idme/idme_csdk_0010.html