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

com.antgroup.antchain.openapi.das.models.EnterpriseStaff Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.das.models;

import com.aliyun.tea.*;

public class EnterpriseStaff extends TeaModel {
    // 主要人员名称
    @NameInMap("name")
    public String name;

    // 法人类型,1-人;2-公司
    @NameInMap("type")
    public String type;

    // 经理
    @NameInMap("type_join")
    public java.util.List typeJoin;

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

    public EnterpriseStaff setName(String name) {
        this.name = name;
        return this;
    }
    public String getName() {
        return this.name;
    }

    public EnterpriseStaff setType(String type) {
        this.type = type;
        return this;
    }
    public String getType() {
        return this.type;
    }

    public EnterpriseStaff setTypeJoin(java.util.List typeJoin) {
        this.typeJoin = typeJoin;
        return this;
    }
    public java.util.List getTypeJoin() {
        return this.typeJoin;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy