com.alipay.api.domain.AlipayOpenSpNordermaterialsapplyOrderCreateModel 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-11-06 11:11:54
*/
public class AlipayOpenSpNordermaterialsapplyOrderCreateModel extends AlipayObject {
private static final long serialVersionUID = 2453281887434153974L;
/**
* 与支付宝约定模版样式后,提供模版编号,接口传入
*/
@ApiField("materials_template_code")
private String materialsTemplateCode;
/**
* 是否测试数据,默认不传为false
*/
@ApiField("test_flag")
private Boolean testFlag;
public String getMaterialsTemplateCode() {
return this.materialsTemplateCode;
}
public void setMaterialsTemplateCode(String materialsTemplateCode) {
this.materialsTemplateCode = materialsTemplateCode;
}
public Boolean getTestFlag() {
return this.testFlag;
}
public void setTestFlag(Boolean testFlag) {
this.testFlag = testFlag;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy