com.alipay.api.domain.KoubeiCateringPosQrcodeSyncModel 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 java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 自建盒子二维码同步
*
* @author auto create
* @since 1.0, 2018-11-16 17:21:07
*/
public class KoubeiCateringPosQrcodeSyncModel extends AlipayObject {
private static final long serialVersionUID = 5867826971293575588L;
/**
* 需要同步的桌台与二维码信息
*/
@ApiListField("list")
@ApiField("qrcode_entity")
private List list;
public List getList() {
return this.list;
}
public void setList(List list) {
this.list = list;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy