com.alipay.api.response.KoubeiCateringKmsBakingSyncResponse 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.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.catering.kms.baking.sync response.
*
* @author auto create
* @since 1.0, 2024-07-04 19:33:28
*/
public class KoubeiCateringKmsBakingSyncResponse extends AlipayResponse {
private static final long serialVersionUID = 6553294996862869537L;
/**
* 核对提示信息
*/
@ApiField("check_msg")
private String checkMsg;
/**
* 核对专用字段,核对通过:true
核对未通过:false
*/
@ApiField("check_pass")
private Boolean checkPass;
/**
* 平台统计已同步数据量
*/
@ApiField("sync_count")
private Long syncCount;
public void setCheckMsg(String checkMsg) {
this.checkMsg = checkMsg;
}
public String getCheckMsg( ) {
return this.checkMsg;
}
public void setCheckPass(Boolean checkPass) {
this.checkPass = checkPass;
}
public Boolean getCheckPass( ) {
return this.checkPass;
}
public void setSyncCount(Long syncCount) {
this.syncCount = syncCount;
}
public Long getSyncCount( ) {
return this.syncCount;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy