com.dingtalk.api.request.OapiAlitripBtripApplyGetRequest Maven / Gradle / Ivy
The newest version!
package com.dingtalk.api.request;
import com.taobao.api.internal.mapping.ApiField;
import com.taobao.api.TaobaoObject;
import java.util.Map;
import java.util.List;
import com.taobao.api.ApiRuleException;
import com.taobao.api.BaseTaobaoRequest;
import com.dingtalk.api.DingTalkConstants;
import com.taobao.api.Constants;
import com.taobao.api.internal.util.TaobaoHashMap;
import com.taobao.api.internal.util.TaobaoUtils;
import com.taobao.api.internal.util.json.JSONWriter;
import com.dingtalk.api.response.OapiAlitripBtripApplyGetResponse;
/**
* TOP DingTalk-API: dingtalk.oapi.alitrip.btrip.apply.get request
*
* @author top auto create
* @since 1.0, 2021.09.26
*/
public class OapiAlitripBtripApplyGetRequest extends BaseTaobaoRequest {
/**
* 请求对象
*/
private String rq;
public void setRq(String rq) {
this.rq = rq;
}
public void setRq(OpenSearchRq rq) {
this.rq = new JSONWriter(false,false,true).write(rq);
}
public String getRq() {
return this.rq;
}
public String getApiMethodName() {
return "dingtalk.oapi.alitrip.btrip.apply.get";
}
private String topResponseType = Constants.RESPONSE_TYPE_DINGTALK_OAPI;
public String getTopResponseType() {
return this.topResponseType;
}
public void setTopResponseType(String topResponseType) {
this.topResponseType = topResponseType;
}
public String getTopApiCallType() {
return DingTalkConstants.CALL_TYPE_OAPI;
}
private String topHttpMethod = DingTalkConstants.HTTP_METHOD_POST;
public String getTopHttpMethod() {
return this.topHttpMethod;
}
public void setTopHttpMethod(String topHttpMethod) {
this.topHttpMethod = topHttpMethod;
}
public void setHttpMethod(String httpMethod) {
this.setTopHttpMethod(httpMethod);
}
public Map getTextParams() {
TaobaoHashMap txtParams = new TaobaoHashMap();
txtParams.put("rq", this.rq);
if(this.udfParams != null) {
txtParams.putAll(this.udfParams);
}
return txtParams;
}
public Class getResponseClass() {
return OapiAlitripBtripApplyGetResponse.class;
}
public void check() throws ApiRuleException {
}
/**
* 请求对象
*
* @author top auto create
* @since 1.0, null
*/
public static class OpenSearchRq extends TaobaoObject {
private static final long serialVersionUID = 8166357669492986146L;
/**
* 阿里商旅审批单id
*/
@ApiField("apply_id")
private Long applyId;
/**
* 阿里商旅审批单展示id
*/
@ApiField("apply_show_id")
private String applyShowId;
/**
* 企业id
*/
@ApiField("corpid")
private String corpid;
/**
* 外部审批单id
*/
@ApiField("thirdpart_apply_id")
private String thirdpartApplyId;
/**
* 申请单提交类型 1:代提交 2:本人提交 注意:当申请单为代提交时,申请单提交人自己无法为自己下单
*/
@ApiField("type")
private Long type;
public Long getApplyId() {
return this.applyId;
}
public void setApplyId(Long applyId) {
this.applyId = applyId;
}
public String getApplyShowId() {
return this.applyShowId;
}
public void setApplyShowId(String applyShowId) {
this.applyShowId = applyShowId;
}
public String getCorpid() {
return this.corpid;
}
public void setCorpid(String corpid) {
this.corpid = corpid;
}
public String getThirdpartApplyId() {
return this.thirdpartApplyId;
}
public void setThirdpartApplyId(String thirdpartApplyId) {
this.thirdpartApplyId = thirdpartApplyId;
}
public Long getType() {
return this.type;
}
public void setType(Long type) {
this.type = type;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy