|
@@ -3,9 +3,10 @@ package com.develop.common.tuya_bean;
|
|
|
import java.util.List;
|
|
|
|
|
|
public class RecipesBean {
|
|
|
- private List<?> allergens;
|
|
|
+
|
|
|
+ private List<AllergensBean> allergens;
|
|
|
private String author;
|
|
|
- private List<?> cookStepInfoVOList;
|
|
|
+ private List<CookStepInfoVOListBean> cookStepInfoVOList;
|
|
|
private Integer cookTime;
|
|
|
private Integer cookType;
|
|
|
private String desc;
|
|
@@ -41,14 +42,15 @@ public class RecipesBean {
|
|
|
private String stepVideo;
|
|
|
private String stepVideoCover;
|
|
|
private String taste;
|
|
|
+ private String tasteDesc;
|
|
|
private Integer useFoodLib;
|
|
|
private String xyxk;
|
|
|
|
|
|
- public List<?> getAllergens() {
|
|
|
+ public List<AllergensBean> getAllergens() {
|
|
|
return allergens;
|
|
|
}
|
|
|
|
|
|
- public void setAllergens(List<?> allergens) {
|
|
|
+ public void setAllergens(List<AllergensBean> allergens) {
|
|
|
this.allergens = allergens;
|
|
|
}
|
|
|
|
|
@@ -60,11 +62,11 @@ public class RecipesBean {
|
|
|
this.author = author;
|
|
|
}
|
|
|
|
|
|
- public List<?> getCookStepInfoVOList() {
|
|
|
+ public List<CookStepInfoVOListBean> getCookStepInfoVOList() {
|
|
|
return cookStepInfoVOList;
|
|
|
}
|
|
|
|
|
|
- public void setCookStepInfoVOList(List<?> cookStepInfoVOList) {
|
|
|
+ public void setCookStepInfoVOList(List<CookStepInfoVOListBean> cookStepInfoVOList) {
|
|
|
this.cookStepInfoVOList = cookStepInfoVOList;
|
|
|
}
|
|
|
|
|
@@ -348,6 +350,14 @@ public class RecipesBean {
|
|
|
this.taste = taste;
|
|
|
}
|
|
|
|
|
|
+ public String getTasteDesc() {
|
|
|
+ return tasteDesc;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTasteDesc(String tasteDesc) {
|
|
|
+ this.tasteDesc = tasteDesc;
|
|
|
+ }
|
|
|
+
|
|
|
public Integer getUseFoodLib() {
|
|
|
return useFoodLib;
|
|
|
}
|
|
@@ -364,6 +374,207 @@ public class RecipesBean {
|
|
|
this.xyxk = xyxk;
|
|
|
}
|
|
|
|
|
|
+ public static class AllergensBean {
|
|
|
+ private Integer id;
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ public Integer getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Integer id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public static class CookStepInfoVOListBean {
|
|
|
+ private List<CookArgsBean> cookArgs;
|
|
|
+ private String finishCtrl;
|
|
|
+ private Long gmtCreate;
|
|
|
+ private Long gmtModified;
|
|
|
+ private Integer id;
|
|
|
+ private Integer isCookArgs;
|
|
|
+ private List<LangInfosBean> langInfos;
|
|
|
+ private Integer menuId;
|
|
|
+ private Integer step;
|
|
|
+ private String stepImg;
|
|
|
+
|
|
|
+ public List<CookArgsBean> getCookArgs() {
|
|
|
+ return cookArgs;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCookArgs(List<CookArgsBean> cookArgs) {
|
|
|
+ this.cookArgs = cookArgs;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFinishCtrl() {
|
|
|
+ return finishCtrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFinishCtrl(String finishCtrl) {
|
|
|
+ this.finishCtrl = finishCtrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getGmtCreate() {
|
|
|
+ return gmtCreate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGmtCreate(Long gmtCreate) {
|
|
|
+ this.gmtCreate = gmtCreate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getGmtModified() {
|
|
|
+ return gmtModified;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGmtModified(Long gmtModified) {
|
|
|
+ this.gmtModified = gmtModified;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Integer id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getIsCookArgs() {
|
|
|
+ return isCookArgs;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsCookArgs(Integer isCookArgs) {
|
|
|
+ this.isCookArgs = isCookArgs;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<LangInfosBean> getLangInfos() {
|
|
|
+ return langInfos;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLangInfos(List<LangInfosBean> langInfos) {
|
|
|
+ this.langInfos = langInfos;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getMenuId() {
|
|
|
+ return menuId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMenuId(Integer menuId) {
|
|
|
+ this.menuId = menuId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getStep() {
|
|
|
+ return step;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStep(Integer step) {
|
|
|
+ this.step = step;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStepImg() {
|
|
|
+ return stepImg;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStepImg(String stepImg) {
|
|
|
+ this.stepImg = stepImg;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static class CookArgsBean {
|
|
|
+ private String dpCode;
|
|
|
+ private String dpValue;
|
|
|
+ private Boolean isTypeValue;
|
|
|
+ private String productId;
|
|
|
+
|
|
|
+ public String getDpCode() {
|
|
|
+ return dpCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDpCode(String dpCode) {
|
|
|
+ this.dpCode = dpCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDpValue() {
|
|
|
+ return dpValue;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDpValue(String dpValue) {
|
|
|
+ this.dpValue = dpValue;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Boolean getIsTypeValue() {
|
|
|
+ return isTypeValue;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsTypeValue(Boolean isTypeValue) {
|
|
|
+ this.isTypeValue = isTypeValue;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProductId() {
|
|
|
+ return productId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProductId(String productId) {
|
|
|
+ this.productId = productId;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public static class LangInfosBean {
|
|
|
+ private String desc;
|
|
|
+ private String lang;
|
|
|
+ private String stepImg;
|
|
|
+ private String stepVideo;
|
|
|
+ private String stepVideoCover;
|
|
|
+
|
|
|
+ public String getDesc() {
|
|
|
+ return desc;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDesc(String desc) {
|
|
|
+ this.desc = desc;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLang() {
|
|
|
+ return lang;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLang(String lang) {
|
|
|
+ this.lang = lang;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStepImg() {
|
|
|
+ return stepImg;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStepImg(String stepImg) {
|
|
|
+ this.stepImg = stepImg;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStepVideo() {
|
|
|
+ return stepVideo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStepVideo(String stepVideo) {
|
|
|
+ this.stepVideo = stepVideo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStepVideoCover() {
|
|
|
+ return stepVideoCover;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStepVideoCover(String stepVideoCover) {
|
|
|
+ this.stepVideoCover = stepVideoCover;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
public static class FoodInfoVOListBean {
|
|
|
private List<FoodLangInfoVOListBean> foodLangInfoVOList;
|
|
|
private List<FoodNutritionVOListBean> foodNutritionVOList;
|