com.aliyun.dingtalkindustry_1_0.models.CampusUpdateCampusRequest 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 CampusUpdateCampusRequest extends TeaModel {
/**
* example:
* 锦城街道和谐社区101号
*/
@NameInMap("address")
public String address;
/**
* example:
* 5200.13(平方米)
*/
@NameInMap("area")
public Double area;
/**
* example:
* 0
*/
@NameInMap("belongProjectGroupId")
public Long belongProjectGroupId;
/**
* This parameter is required.
*
* example:
* 12345
*/
@NameInMap("campusDeptId")
public Long campusDeptId;
/**
* example:
* 绿城未来park
*/
@NameInMap("campusName")
public String campusName;
/**
* example:
* 10000
*/
@NameInMap("capacity")
public Integer capacity;
/**
* example:
* 371500
*/
@NameInMap("cityId")
public Integer cityId;
/**
* example:
* 中国
*/
@NameInMap("country")
public String country;
/**
* example:
* 371502
*/
@NameInMap("countyId")
public Integer countyId;
/**
* example:
* 绿城产业
*/
@NameInMap("description")
public String description;
/**
* example:
* {"creator":"dsy"}
*/
@NameInMap("extend")
public String extend;
/**
* example:
* 1655704317794
*/
@NameInMap("orderEndTime")
public Long orderEndTime;
/**
* example:
* 线下付款
*/
@NameInMap("orderInfo")
public Long orderInfo;
/**
* example:
* 1655704317794
*/
@NameInMap("orderStartTime")
public Long orderStartTime;
/**
* example:
* 370000(山东)
*/
@NameInMap("provId")
public Integer provId;
/**
* example:
* 156XXXX338
*/
@NameInMap("telephone")
public String telephone;
public static CampusUpdateCampusRequest build(java.util.Map map) throws Exception {
CampusUpdateCampusRequest self = new CampusUpdateCampusRequest();
return TeaModel.build(map, self);
}
public CampusUpdateCampusRequest setAddress(String address) {
this.address = address;
return this;
}
public String getAddress() {
return this.address;
}
public CampusUpdateCampusRequest setArea(Double area) {
this.area = area;
return this;
}
public Double getArea() {
return this.area;
}
public CampusUpdateCampusRequest setBelongProjectGroupId(Long belongProjectGroupId) {
this.belongProjectGroupId = belongProjectGroupId;
return this;
}
public Long getBelongProjectGroupId() {
return this.belongProjectGroupId;
}
public CampusUpdateCampusRequest setCampusDeptId(Long campusDeptId) {
this.campusDeptId = campusDeptId;
return this;
}
public Long getCampusDeptId() {
return this.campusDeptId;
}
public CampusUpdateCampusRequest setCampusName(String campusName) {
this.campusName = campusName;
return this;
}
public String getCampusName() {
return this.campusName;
}
public CampusUpdateCampusRequest setCapacity(Integer capacity) {
this.capacity = capacity;
return this;
}
public Integer getCapacity() {
return this.capacity;
}
public CampusUpdateCampusRequest setCityId(Integer cityId) {
this.cityId = cityId;
return this;
}
public Integer getCityId() {
return this.cityId;
}
public CampusUpdateCampusRequest setCountry(String country) {
this.country = country;
return this;
}
public String getCountry() {
return this.country;
}
public CampusUpdateCampusRequest setCountyId(Integer countyId) {
this.countyId = countyId;
return this;
}
public Integer getCountyId() {
return this.countyId;
}
public CampusUpdateCampusRequest setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public CampusUpdateCampusRequest setExtend(String extend) {
this.extend = extend;
return this;
}
public String getExtend() {
return this.extend;
}
public CampusUpdateCampusRequest setOrderEndTime(Long orderEndTime) {
this.orderEndTime = orderEndTime;
return this;
}
public Long getOrderEndTime() {
return this.orderEndTime;
}
public CampusUpdateCampusRequest setOrderInfo(Long orderInfo) {
this.orderInfo = orderInfo;
return this;
}
public Long getOrderInfo() {
return this.orderInfo;
}
public CampusUpdateCampusRequest setOrderStartTime(Long orderStartTime) {
this.orderStartTime = orderStartTime;
return this;
}
public Long getOrderStartTime() {
return this.orderStartTime;
}
public CampusUpdateCampusRequest setProvId(Integer provId) {
this.provId = provId;
return this;
}
public Integer getProvId() {
return this.provId;
}
public CampusUpdateCampusRequest setTelephone(String telephone) {
this.telephone = telephone;
return this;
}
public String getTelephone() {
return this.telephone;
}
}