
com.alipay.api.domain.KoubeiCateringDishRecommendQueryModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
baidu push client api with maven
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 点餐菜品推荐
*
* @author auto create
* @since 1.0, 2017-08-25 16:00:11
*/
public class KoubeiCateringDishRecommendQueryModel extends AlipayObject {
private static final long serialVersionUID = 3841995661849576782L;
/**
* 用户已点的主菜品ID,传入时作为推荐菜品参考
*/
@ApiField("dish_id")
private String dishId;
/**
* 点餐门店所属的商家PID
*/
@ApiField("merchent_pid")
private String merchentPid;
/**
* 点餐的门店ID
*/
@ApiField("shop_id")
private String shopId;
/**
* 用户ID
*/
@ApiField("user_id")
private String userId;
public String getDishId() {
return this.dishId;
}
public void setDishId(String dishId) {
this.dishId = dishId;
}
public String getMerchentPid() {
return this.merchentPid;
}
public void setMerchentPid(String merchentPid) {
this.merchentPid = merchentPid;
}
public String getShopId() {
return this.shopId;
}
public void setShopId(String shopId) {
this.shopId = shopId;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy