com.alipay.api.domain.KoubeiCateringDishRuleQueryModel 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;
/**
* 菜品规则规则查询通用API
*
* @author auto create
* @since 1.0, 2020-09-08 17:20:22
*/
public class KoubeiCateringDishRuleQueryModel extends AlipayObject {
private static final long serialVersionUID = 3389145442742583856L;
/**
* 规则的类型,枚举值如下:
DEFAULT_IN_CARTS // "开台默认菜";
NON_WHOLE_ORDER_DISCOUNT", //"不参与整单优惠的菜";
MUST_IN_ORDER // "下单必点菜";
*/
@ApiField("biz_type")
private String bizType;
/**
* 菜品id
*/
@ApiField("dish_id")
private String dishId;
/**
* 当查询规则类型biz_type为DEFAULT_IN_CARTS,即开台默认菜的时候,本项必填。
*/
@ApiField("sku_id")
private String skuId;
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
public String getDishId() {
return this.dishId;
}
public void setDishId(String dishId) {
this.dishId = dishId;
}
public String getSkuId() {
return this.skuId;
}
public void setSkuId(String skuId) {
this.skuId = skuId;
}
}