com.antgroup.antchain.openapi.rms.models.QueryTraceAppsqlstatResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-rms Show documentation
Show all versions of openapi-rms Show documentation
Ant Chain RMS SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.rms.models;
import com.aliyun.tea.*;
public class QueryTraceAppsqlstatResponse extends TeaModel {
// 请求唯一ID,用于链路跟踪和问题排查
@NameInMap("req_msg_id")
public String reqMsgId;
// 结果码,一般OK表示调用成功
@NameInMap("result_code")
public String resultCode;
// 异常信息的文本描述
@NameInMap("result_msg")
public String resultMsg;
// 结果
@NameInMap("result")
public java.util.List result;
// 分页号
@NameInMap("current_page")
public Long currentPage;
// 分页大小
@NameInMap("page_size")
public Long pageSize;
// 查询总数
@NameInMap("total_size")
public Long totalSize;
// 查询总页数
@NameInMap("total_page")
public Long totalPage;
public static QueryTraceAppsqlstatResponse build(java.util.Map map) throws Exception {
QueryTraceAppsqlstatResponse self = new QueryTraceAppsqlstatResponse();
return TeaModel.build(map, self);
}
public QueryTraceAppsqlstatResponse setReqMsgId(String reqMsgId) {
this.reqMsgId = reqMsgId;
return this;
}
public String getReqMsgId() {
return this.reqMsgId;
}
public QueryTraceAppsqlstatResponse setResultCode(String resultCode) {
this.resultCode = resultCode;
return this;
}
public String getResultCode() {
return this.resultCode;
}
public QueryTraceAppsqlstatResponse setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
return this;
}
public String getResultMsg() {
return this.resultMsg;
}
public QueryTraceAppsqlstatResponse setResult(java.util.List result) {
this.result = result;
return this;
}
public java.util.List getResult() {
return this.result;
}
public QueryTraceAppsqlstatResponse setCurrentPage(Long currentPage) {
this.currentPage = currentPage;
return this;
}
public Long getCurrentPage() {
return this.currentPage;
}
public QueryTraceAppsqlstatResponse setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public QueryTraceAppsqlstatResponse setTotalSize(Long totalSize) {
this.totalSize = totalSize;
return this;
}
public Long getTotalSize() {
return this.totalSize;
}
public QueryTraceAppsqlstatResponse setTotalPage(Long totalPage) {
this.totalPage = totalPage;
return this;
}
public Long getTotalPage() {
return this.totalPage;
}
}