com.alipay.api.domain.KbdishVirtualDishSimplifyInfo 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, 2020-09-07 16:12:55
*/
public class KbdishVirtualDishSimplifyInfo extends AlipayObject {
private static final long serialVersionUID = 3365961646658361734L;
/**
* 外部菜品id
*/
@ApiField("out_dish_id")
private String outDishId;
/**
* 菜品在虚拟类目中的排序值,只支持数字类型,如果不填默认1
*/
@ApiField("sort")
private String sort;
public String getOutDishId() {
return this.outDishId;
}
public void setOutDishId(String outDishId) {
this.outDishId = outDishId;
}
public String getSort() {
return this.sort;
}
public void setSort(String sort) {
this.sort = sort;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy