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

com.aliyun.dingtalkindustry_1_0.models.CampusListRenterResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class CampusListRenterResponseBody extends TeaModel {
    // 租客列表
    @NameInMap("result")
    public java.util.List result;

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

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

    public static class CampusListRenterResponseBodyResult extends TeaModel {
        // 绑定钉钉组织ID
        @NameInMap("bindRenterCorpId")
        public String bindRenterCorpId;

        // 绑定时间
        @NameInMap("bindTime")
        public Long bindTime;

        // 企业信用代码
        @NameInMap("creditCode")
        public String creditCode;

        // 到期时间
        @NameInMap("endTime")
        public Long endTime;

        // 扩展信息
        @NameInMap("extend")
        public String extend;

        // 租客名称
        @NameInMap("name")
        public String name;

        // 租客部门ID
        @NameInMap("renterDeptId")
        public Long renterDeptId;

        // 起始时间
        @NameInMap("startTime")
        public Long startTime;

        // 状态
        @NameInMap("state")
        public Integer state;

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

        public CampusListRenterResponseBodyResult setBindRenterCorpId(String bindRenterCorpId) {
            this.bindRenterCorpId = bindRenterCorpId;
            return this;
        }
        public String getBindRenterCorpId() {
            return this.bindRenterCorpId;
        }

        public CampusListRenterResponseBodyResult setBindTime(Long bindTime) {
            this.bindTime = bindTime;
            return this;
        }
        public Long getBindTime() {
            return this.bindTime;
        }

        public CampusListRenterResponseBodyResult setCreditCode(String creditCode) {
            this.creditCode = creditCode;
            return this;
        }
        public String getCreditCode() {
            return this.creditCode;
        }

        public CampusListRenterResponseBodyResult setEndTime(Long endTime) {
            this.endTime = endTime;
            return this;
        }
        public Long getEndTime() {
            return this.endTime;
        }

        public CampusListRenterResponseBodyResult setExtend(String extend) {
            this.extend = extend;
            return this;
        }
        public String getExtend() {
            return this.extend;
        }

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

        public CampusListRenterResponseBodyResult setRenterDeptId(Long renterDeptId) {
            this.renterDeptId = renterDeptId;
            return this;
        }
        public Long getRenterDeptId() {
            return this.renterDeptId;
        }

        public CampusListRenterResponseBodyResult setStartTime(Long startTime) {
            this.startTime = startTime;
            return this;
        }
        public Long getStartTime() {
            return this.startTime;
        }

        public CampusListRenterResponseBodyResult setState(Integer state) {
            this.state = state;
            return this;
        }
        public Integer getState() {
            return this.state;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy