com.alipay.api.response.KoubeiCateringPosStalldetailQueryResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.domain.StallEntity;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.catering.pos.stalldetail.query response.
*
* @author auto create
* @since 1.0, 2024-07-04 19:33:36
*/
public class KoubeiCateringPosStalldetailQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 3599694747472559924L;
/**
* 档口模型
*/
@ApiField("stall_entity")
private StallEntity stallEntity;
public void setStallEntity(StallEntity stallEntity) {
this.stallEntity = stallEntity;
}
public StallEntity getStallEntity( ) {
return this.stallEntity;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy