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

com.aliyun.dingtalkvillage_1_0.models.ListSubCorpsResponseBody 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.dingtalkvillage_1_0.models;

import com.aliyun.tea.*;

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

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

    public ListSubCorpsResponseBody setCorpList(java.util.List corpList) {
        this.corpList = corpList;
        return this;
    }
    public java.util.List getCorpList() {
        return this.corpList;
    }

    public static class ListSubCorpsResponseBodyCorpList extends TeaModel {
        // 组织corpid
        @NameInMap("corpId")
        public String corpId;

        // 组织名字
        @NameInMap("corpName")
        public String corpName;

        // 组织行业名称
        @NameInMap("industry")
        public String industry;

        // 组织行业码
        @NameInMap("industryCode")
        public Integer industryCode;

        // 区域码
        @NameInMap("regionId")
        public String regionId;

        // 区域详细信息
        @NameInMap("regionLocation")
        public String regionLocation;

        // 区域类型,值为county,town,community,residential,依次为区/县、乡/镇/街道、社区/村、小区
        @NameInMap("regionType")
        public String regionType;

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

        public ListSubCorpsResponseBodyCorpList setCorpId(String corpId) {
            this.corpId = corpId;
            return this;
        }
        public String getCorpId() {
            return this.corpId;
        }

        public ListSubCorpsResponseBodyCorpList setCorpName(String corpName) {
            this.corpName = corpName;
            return this;
        }
        public String getCorpName() {
            return this.corpName;
        }

        public ListSubCorpsResponseBodyCorpList setIndustry(String industry) {
            this.industry = industry;
            return this;
        }
        public String getIndustry() {
            return this.industry;
        }

        public ListSubCorpsResponseBodyCorpList setIndustryCode(Integer industryCode) {
            this.industryCode = industryCode;
            return this;
        }
        public Integer getIndustryCode() {
            return this.industryCode;
        }

        public ListSubCorpsResponseBodyCorpList setRegionId(String regionId) {
            this.regionId = regionId;
            return this;
        }
        public String getRegionId() {
            return this.regionId;
        }

        public ListSubCorpsResponseBodyCorpList setRegionLocation(String regionLocation) {
            this.regionLocation = regionLocation;
            return this;
        }
        public String getRegionLocation() {
            return this.regionLocation;
        }

        public ListSubCorpsResponseBodyCorpList setRegionType(String regionType) {
            this.regionType = regionType;
            return this;
        }
        public String getRegionType() {
            return this.regionType;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy