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

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

There is a newer version: 2.1.30
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 MasterDataTenantQueyRequest extends TeaModel {
    // 实体 code
    @NameInMap("entityCode")
    public String entityCode;

    // isv的业务领域
    @NameInMap("scopeCode")
    public String scopeCode;

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

    public MasterDataTenantQueyRequest setEntityCode(String entityCode) {
        this.entityCode = entityCode;
        return this;
    }
    public String getEntityCode() {
        return this.entityCode;
    }

    public MasterDataTenantQueyRequest setScopeCode(String scopeCode) {
        this.scopeCode = scopeCode;
        return this;
    }
    public String getScopeCode() {
        return this.scopeCode;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy