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

com.aliyun.dingtalkindustry_1_0.models.SupplyListSubDeptResponseBody 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.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class SupplyListSubDeptResponseBody extends TeaModel {
    @NameInMap("result")
    public java.util.List result;

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

    public SupplyListSubDeptResponseBody setResult(java.util.List result) {
        this.result = result;
        return this;
    }
    public java.util.List getResult() {
        return this.result;
    }

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

111

*/ @NameInMap("id") public Long id; /** * example: *

11111

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

1111

*/ @NameInMap("superId") public Long superId; /** * example: *

1111

*/ @NameInMap("superName") public String superName; public static SupplyListSubDeptResponseBodyResultPartnerTypeInfoList build(java.util.Map map) throws Exception { SupplyListSubDeptResponseBodyResultPartnerTypeInfoList self = new SupplyListSubDeptResponseBodyResultPartnerTypeInfoList(); return TeaModel.build(map, self); } public SupplyListSubDeptResponseBodyResultPartnerTypeInfoList setId(Long id) { this.id = id; return this; } public Long getId() { return this.id; } public SupplyListSubDeptResponseBodyResultPartnerTypeInfoList setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public SupplyListSubDeptResponseBodyResultPartnerTypeInfoList setSuperId(Long superId) { this.superId = superId; return this; } public Long getSuperId() { return this.superId; } public SupplyListSubDeptResponseBodyResultPartnerTypeInfoList setSuperName(String superName) { this.superName = superName; return this; } public String getSuperName() { return this.superName; } } public static class SupplyListSubDeptResponseBodyResult extends TeaModel { /** * example: *

1111

*/ @NameInMap("deptId") public Long deptId; /** * example: *

ROOT

*/ @NameInMap("deptType") public String deptType; @NameInMap("hasSubDept") public Boolean hasSubDept; /** * example: *

xxxx 有限公司

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

111111

*/ @NameInMap("partnerNumber") public String partnerNumber; @NameInMap("partnerTypeInfoList") public java.util.List partnerTypeInfoList; /** * example: *

1111

*/ @NameInMap("superId") public Long superId; public static SupplyListSubDeptResponseBodyResult build(java.util.Map map) throws Exception { SupplyListSubDeptResponseBodyResult self = new SupplyListSubDeptResponseBodyResult(); return TeaModel.build(map, self); } public SupplyListSubDeptResponseBodyResult setDeptId(Long deptId) { this.deptId = deptId; return this; } public Long getDeptId() { return this.deptId; } public SupplyListSubDeptResponseBodyResult setDeptType(String deptType) { this.deptType = deptType; return this; } public String getDeptType() { return this.deptType; } public SupplyListSubDeptResponseBodyResult setHasSubDept(Boolean hasSubDept) { this.hasSubDept = hasSubDept; return this; } public Boolean getHasSubDept() { return this.hasSubDept; } public SupplyListSubDeptResponseBodyResult setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public SupplyListSubDeptResponseBodyResult setPartnerNumber(String partnerNumber) { this.partnerNumber = partnerNumber; return this; } public String getPartnerNumber() { return this.partnerNumber; } public SupplyListSubDeptResponseBodyResult setPartnerTypeInfoList(java.util.List partnerTypeInfoList) { this.partnerTypeInfoList = partnerTypeInfoList; return this; } public java.util.List getPartnerTypeInfoList() { return this.partnerTypeInfoList; } public SupplyListSubDeptResponseBodyResult setSuperId(Long superId) { this.superId = superId; return this; } public Long getSuperId() { return this.superId; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy