com.alipay.api.domain.AlipayCloudCloudbaseDatabaseRollbackinfoQueryModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 可回档信息查询
*
* @author auto create
* @since 1.0, 2024-03-13 16:52:10
*/
public class AlipayCloudCloudbaseDatabaseRollbackinfoQueryModel extends AlipayObject {
private static final long serialVersionUID = 5696126478323169653L;
/**
* 小程序id
*/
@ApiField("biz_app_id")
private String bizAppId;
/**
* 环境id
*/
@ApiField("biz_env_id")
private String bizEnvId;
public String getBizAppId() {
return this.bizAppId;
}
public void setBizAppId(String bizAppId) {
this.bizAppId = bizAppId;
}
public String getBizEnvId() {
return this.bizEnvId;
}
public void setBizEnvId(String bizEnvId) {
this.bizEnvId = bizEnvId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy