All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkhrm_1_0.models.MasterDatasGetResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkhrm_1_0.models;

import com.aliyun.tea.*;

public class MasterDatasGetResponseBody extends TeaModel {
    @NameInMap("result")
    public MasterDatasGetResponseBodyResult result;

    public static MasterDatasGetResponseBody build(java.util.Map map) throws Exception {
        MasterDatasGetResponseBody self = new MasterDatasGetResponseBody();
        return TeaModel.build(map, self);
    }

    public MasterDatasGetResponseBody setResult(MasterDatasGetResponseBodyResult result) {
        this.result = result;
        return this;
    }
    public MasterDatasGetResponseBodyResult getResult() {
        return this.result;
    }

    public static class MasterDatasGetResponseBodyResultViewEntityFieldVOListFieldDataVO extends TeaModel {
        /**
         * example:
         * 

100

*/ @NameInMap("key") public String key; /** * example: *

100

*/ @NameInMap("value") public String value; public static MasterDatasGetResponseBodyResultViewEntityFieldVOListFieldDataVO build(java.util.Map map) throws Exception { MasterDatasGetResponseBodyResultViewEntityFieldVOListFieldDataVO self = new MasterDatasGetResponseBodyResultViewEntityFieldVOListFieldDataVO(); return TeaModel.build(map, self); } public MasterDatasGetResponseBodyResultViewEntityFieldVOListFieldDataVO setKey(String key) { this.key = key; return this; } public String getKey() { return this.key; } public MasterDatasGetResponseBodyResultViewEntityFieldVOListFieldDataVO setValue(String value) { this.value = value; return this; } public String getValue() { return this.value; } } public static class MasterDatasGetResponseBodyResultViewEntityFieldVOList extends TeaModel { /** * example: *

performanceValue

*/ @NameInMap("fieldCode") public String fieldCode; @NameInMap("fieldDataVO") public MasterDatasGetResponseBodyResultViewEntityFieldVOListFieldDataVO fieldDataVO; /** * example: *

绩效等级

*/ @NameInMap("fieldName") public String fieldName; /** * example: *

1

*/ @NameInMap("fieldType") public String fieldType; public static MasterDatasGetResponseBodyResultViewEntityFieldVOList build(java.util.Map map) throws Exception { MasterDatasGetResponseBodyResultViewEntityFieldVOList self = new MasterDatasGetResponseBodyResultViewEntityFieldVOList(); return TeaModel.build(map, self); } public MasterDatasGetResponseBodyResultViewEntityFieldVOList setFieldCode(String fieldCode) { this.fieldCode = fieldCode; return this; } public String getFieldCode() { return this.fieldCode; } public MasterDatasGetResponseBodyResultViewEntityFieldVOList setFieldDataVO(MasterDatasGetResponseBodyResultViewEntityFieldVOListFieldDataVO fieldDataVO) { this.fieldDataVO = fieldDataVO; return this; } public MasterDatasGetResponseBodyResultViewEntityFieldVOListFieldDataVO getFieldDataVO() { return this.fieldDataVO; } public MasterDatasGetResponseBodyResultViewEntityFieldVOList setFieldName(String fieldName) { this.fieldName = fieldName; return this; } public String getFieldName() { return this.fieldName; } public MasterDatasGetResponseBodyResultViewEntityFieldVOList setFieldType(String fieldType) { this.fieldType = fieldType; return this; } public String getFieldType() { return this.fieldType; } } public static class MasterDatasGetResponseBodyResult extends TeaModel { /** * example: *

uk123123

*/ @NameInMap("objId") public String objId; /** *

This parameter is required.

* * example: *

admind123

*/ @NameInMap("relationId") public String relationId; /** * example: *

PERFORMANCE

*/ @NameInMap("scopeCode") public String scopeCode; /** * example: *

base

*/ @NameInMap("viewEntityCode") public String viewEntityCode; @NameInMap("viewEntityFieldVOList") public java.util.List viewEntityFieldVOList; public static MasterDatasGetResponseBodyResult build(java.util.Map map) throws Exception { MasterDatasGetResponseBodyResult self = new MasterDatasGetResponseBodyResult(); return TeaModel.build(map, self); } public MasterDatasGetResponseBodyResult setObjId(String objId) { this.objId = objId; return this; } public String getObjId() { return this.objId; } public MasterDatasGetResponseBodyResult setRelationId(String relationId) { this.relationId = relationId; return this; } public String getRelationId() { return this.relationId; } public MasterDatasGetResponseBodyResult setScopeCode(String scopeCode) { this.scopeCode = scopeCode; return this; } public String getScopeCode() { return this.scopeCode; } public MasterDatasGetResponseBodyResult setViewEntityCode(String viewEntityCode) { this.viewEntityCode = viewEntityCode; return this; } public String getViewEntityCode() { return this.viewEntityCode; } public MasterDatasGetResponseBodyResult setViewEntityFieldVOList(java.util.List viewEntityFieldVOList) { this.viewEntityFieldVOList = viewEntityFieldVOList; return this; } public java.util.List getViewEntityFieldVOList() { return this.viewEntityFieldVOList; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy