com.aliyun.dingtalkalitrip_1_0.models.GetFlightExceedApplyRequest 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.dingtalkalitrip_1_0.models;
import com.aliyun.tea.*;
public class GetFlightExceedApplyRequest extends TeaModel {
// 商旅超标审批单id
@NameInMap("applyId")
public String applyId;
// 第三方企业id
@NameInMap("corpId")
public String corpId;
public static GetFlightExceedApplyRequest build(java.util.Map map) throws Exception {
GetFlightExceedApplyRequest self = new GetFlightExceedApplyRequest();
return TeaModel.build(map, self);
}
public GetFlightExceedApplyRequest setApplyId(String applyId) {
this.applyId = applyId;
return this;
}
public String getApplyId() {
return this.applyId;
}
public GetFlightExceedApplyRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
}