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

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

import com.aliyun.tea.*;

public class CampusGetRenterResponseBody extends TeaModel {
    // 绑定组织
    @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 CampusGetRenterResponseBody build(java.util.Map map) throws Exception {
        CampusGetRenterResponseBody self = new CampusGetRenterResponseBody();
        return TeaModel.build(map, self);
    }

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

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

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

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

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

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

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy