com.aliyun.dingtalkindustry_1_0.models.CampusListCampusResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class CampusListCampusResponseBody extends TeaModel {
@NameInMap("result")
public java.util.List result;
public static CampusListCampusResponseBody build(java.util.Map map) throws Exception {
CampusListCampusResponseBody self = new CampusListCampusResponseBody();
return TeaModel.build(map, self);
}
public CampusListCampusResponseBody setResult(java.util.List result) {
this.result = result;
return this;
}
public java.util.List getResult() {
return this.result;
}
public static class CampusListCampusResponseBodyResult extends TeaModel {
/**
* example:
* 杭州市余杭区
*/
@NameInMap("address")
public String address;
/**
* example:
* 121212.1
*/
@NameInMap("area")
public Double area;
/**
* example:
* 1
*/
@NameInMap("belongProjectGroupId")
public Long belongProjectGroupId;
/**
* example:
* ding121212
*/
@NameInMap("campusCorpId")
public String campusCorpId;
/**
* example:
* 1
*/
@NameInMap("campusDeptId")
public Long campusDeptId;
/**
* example:
* 测试园区
*/
@NameInMap("campusName")
public String campusName;
/**
* example:
* 30450
*/
@NameInMap("cityId")
public Integer cityId;
/**
* example:
* 中国
*/
@NameInMap("country")
public String country;
/**
* example:
* 304501
*/
@NameInMap("countyId")
public Integer countyId;
/**
* example:
* 测试
*/
@NameInMap("description")
public String description;
/**
* example:
* 扩展
*/
@NameInMap("extend")
public String extend;
/**
* example:
* 120.1321,28.1213
*/
@NameInMap("location")
public String location;
/**
* example:
* 1655704317794
*/
@NameInMap("orderEndTime")
public Long orderEndTime;
/**
* example:
* 规格1
*/
@NameInMap("orderInfo")
public String orderInfo;
/**
* example:
* 1655704317794
*/
@NameInMap("orderStartTime")
public Long orderStartTime;
/**
* example:
* 304
*/
@NameInMap("provId")
public Integer provId;
/**
* example:
* 13914773133
*/
@NameInMap("telephone")
public String telephone;
public static CampusListCampusResponseBodyResult build(java.util.Map map) throws Exception {
CampusListCampusResponseBodyResult self = new CampusListCampusResponseBodyResult();
return TeaModel.build(map, self);
}
public CampusListCampusResponseBodyResult setAddress(String address) {
this.address = address;
return this;
}
public String getAddress() {
return this.address;
}
public CampusListCampusResponseBodyResult setArea(Double area) {
this.area = area;
return this;
}
public Double getArea() {
return this.area;
}
public CampusListCampusResponseBodyResult setBelongProjectGroupId(Long belongProjectGroupId) {
this.belongProjectGroupId = belongProjectGroupId;
return this;
}
public Long getBelongProjectGroupId() {
return this.belongProjectGroupId;
}
public CampusListCampusResponseBodyResult setCampusCorpId(String campusCorpId) {
this.campusCorpId = campusCorpId;
return this;
}
public String getCampusCorpId() {
return this.campusCorpId;
}
public CampusListCampusResponseBodyResult setCampusDeptId(Long campusDeptId) {
this.campusDeptId = campusDeptId;
return this;
}
public Long getCampusDeptId() {
return this.campusDeptId;
}
public CampusListCampusResponseBodyResult setCampusName(String campusName) {
this.campusName = campusName;
return this;
}
public String getCampusName() {
return this.campusName;
}
public CampusListCampusResponseBodyResult setCityId(Integer cityId) {
this.cityId = cityId;
return this;
}
public Integer getCityId() {
return this.cityId;
}
public CampusListCampusResponseBodyResult setCountry(String country) {
this.country = country;
return this;
}
public String getCountry() {
return this.country;
}
public CampusListCampusResponseBodyResult setCountyId(Integer countyId) {
this.countyId = countyId;
return this;
}
public Integer getCountyId() {
return this.countyId;
}
public CampusListCampusResponseBodyResult setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public CampusListCampusResponseBodyResult setExtend(String extend) {
this.extend = extend;
return this;
}
public String getExtend() {
return this.extend;
}
public CampusListCampusResponseBodyResult setLocation(String location) {
this.location = location;
return this;
}
public String getLocation() {
return this.location;
}
public CampusListCampusResponseBodyResult setOrderEndTime(Long orderEndTime) {
this.orderEndTime = orderEndTime;
return this;
}
public Long getOrderEndTime() {
return this.orderEndTime;
}
public CampusListCampusResponseBodyResult setOrderInfo(String orderInfo) {
this.orderInfo = orderInfo;
return this;
}
public String getOrderInfo() {
return this.orderInfo;
}
public CampusListCampusResponseBodyResult setOrderStartTime(Long orderStartTime) {
this.orderStartTime = orderStartTime;
return this;
}
public Long getOrderStartTime() {
return this.orderStartTime;
}
public CampusListCampusResponseBodyResult setProvId(Integer provId) {
this.provId = provId;
return this;
}
public Integer getProvId() {
return this.provId;
}
public CampusListCampusResponseBodyResult setTelephone(String telephone) {
this.telephone = telephone;
return this;
}
public String getTelephone() {
return this.telephone;
}
}
}