|
|
@@ -0,0 +1,268 @@ |
|
|
|
package com.bonait.bnframework.common.model; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
/** |
|
|
|
* @author: liup |
|
|
|
* @description: 菜谱分类云端数据 |
|
|
|
* @date: 2024/5/9 11:19. |
|
|
|
*/ |
|
|
|
public class GoodsInfoBean { |
|
|
|
|
|
|
|
private String goodsTypeId; |
|
|
|
private String goodsTypeName; |
|
|
|
private List<GoodsAttributeListBean> goodsAttributeList; |
|
|
|
private List<GoodsInfoListBean> goodsInfoList; |
|
|
|
|
|
|
|
public String getGoodsTypeId() { |
|
|
|
return goodsTypeId; |
|
|
|
} |
|
|
|
|
|
|
|
public void setGoodsTypeId(String goodsTypeId) { |
|
|
|
this.goodsTypeId = goodsTypeId; |
|
|
|
} |
|
|
|
|
|
|
|
public String getGoodsTypeName() { |
|
|
|
return goodsTypeName; |
|
|
|
} |
|
|
|
|
|
|
|
public void setGoodsTypeName(String goodsTypeName) { |
|
|
|
this.goodsTypeName = goodsTypeName; |
|
|
|
} |
|
|
|
|
|
|
|
public List<GoodsAttributeListBean> getGoodsAttributeList() { |
|
|
|
return goodsAttributeList; |
|
|
|
} |
|
|
|
|
|
|
|
public void setGoodsAttributeList(List<GoodsAttributeListBean> goodsAttributeList) { |
|
|
|
this.goodsAttributeList = goodsAttributeList; |
|
|
|
} |
|
|
|
|
|
|
|
public List<GoodsInfoListBean> getGoodsInfoList() { |
|
|
|
return goodsInfoList; |
|
|
|
} |
|
|
|
|
|
|
|
public void setGoodsInfoList(List<GoodsInfoListBean> goodsInfoList) { |
|
|
|
this.goodsInfoList = goodsInfoList; |
|
|
|
} |
|
|
|
|
|
|
|
public static class GoodsAttributeListBean { |
|
|
|
private String goodsAttributeId; |
|
|
|
private String goodsAttributeName; |
|
|
|
private int sort; |
|
|
|
private List<GoodsAttributeValueListBean> goodsAttributeValueList; |
|
|
|
|
|
|
|
public int getSort() { |
|
|
|
return sort; |
|
|
|
} |
|
|
|
|
|
|
|
public void setSort(int sort) { |
|
|
|
this.sort = sort; |
|
|
|
} |
|
|
|
|
|
|
|
public String getGoodsAttributeId() { |
|
|
|
return goodsAttributeId; |
|
|
|
} |
|
|
|
|
|
|
|
public void setGoodsAttributeId(String goodsAttributeId) { |
|
|
|
this.goodsAttributeId = goodsAttributeId; |
|
|
|
} |
|
|
|
|
|
|
|
public String getGoodsAttributeName() { |
|
|
|
return goodsAttributeName; |
|
|
|
} |
|
|
|
|
|
|
|
public void setGoodsAttributeName(String goodsAttributeName) { |
|
|
|
this.goodsAttributeName = goodsAttributeName; |
|
|
|
} |
|
|
|
|
|
|
|
public List<GoodsAttributeValueListBean> getGoodsAttributeValueList() { |
|
|
|
return goodsAttributeValueList; |
|
|
|
} |
|
|
|
|
|
|
|
public void setGoodsAttributeValueList(List<GoodsAttributeValueListBean> goodsAttributeValueList) { |
|
|
|
this.goodsAttributeValueList = goodsAttributeValueList; |
|
|
|
} |
|
|
|
|
|
|
|
public static class GoodsAttributeValueListBean { |
|
|
|
private String goodsAttributeId; |
|
|
|
private String goodsAttributeValueId; |
|
|
|
private String attributeValue; |
|
|
|
private int sort; |
|
|
|
|
|
|
|
public int getSort() { |
|
|
|
return sort; |
|
|
|
} |
|
|
|
|
|
|
|
public void setSort(int sort) { |
|
|
|
this.sort = sort; |
|
|
|
} |
|
|
|
|
|
|
|
public String getGoodsAttributeId() { |
|
|
|
return goodsAttributeId; |
|
|
|
} |
|
|
|
|
|
|
|
public void setGoodsAttributeId(String goodsAttributeId) { |
|
|
|
this.goodsAttributeId = goodsAttributeId; |
|
|
|
} |
|
|
|
|
|
|
|
public String getGoodsAttributeValueId() { |
|
|
|
return goodsAttributeValueId; |
|
|
|
} |
|
|
|
|
|
|
|
public void setGoodsAttributeValueId(String goodsAttributeValueId) { |
|
|
|
this.goodsAttributeValueId = goodsAttributeValueId; |
|
|
|
} |
|
|
|
|
|
|
|
public String getAttributeValue() { |
|
|
|
return attributeValue; |
|
|
|
} |
|
|
|
|
|
|
|
public void setAttributeValue(String attributeValue) { |
|
|
|
this.attributeValue = attributeValue; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public static class GoodsInfoListBean { |
|
|
|
private String goodsId; |
|
|
|
private String goodsName; |
|
|
|
private String imgUrl; |
|
|
|
|
|
|
|
public String getImgUrl() { |
|
|
|
return imgUrl; |
|
|
|
} |
|
|
|
|
|
|
|
public void setImgUrl(String imgUrl) { |
|
|
|
this.imgUrl = imgUrl; |
|
|
|
} |
|
|
|
|
|
|
|
private List<GoodsTechnologyActionListBean> goodsTechnologyActionList; |
|
|
|
|
|
|
|
public String getGoodsId() { |
|
|
|
return goodsId; |
|
|
|
} |
|
|
|
|
|
|
|
public void setGoodsId(String goodsId) { |
|
|
|
this.goodsId = goodsId; |
|
|
|
} |
|
|
|
|
|
|
|
public String getGoodsName() { |
|
|
|
return goodsName; |
|
|
|
} |
|
|
|
|
|
|
|
public void setGoodsName(String goodsName) { |
|
|
|
this.goodsName = goodsName; |
|
|
|
} |
|
|
|
|
|
|
|
public List<GoodsTechnologyActionListBean> getGoodsTechnologyActionList() { |
|
|
|
return goodsTechnologyActionList; |
|
|
|
} |
|
|
|
|
|
|
|
public void setGoodsTechnologyActionList(List<GoodsTechnologyActionListBean> goodsTechnologyActionList) { |
|
|
|
this.goodsTechnologyActionList = goodsTechnologyActionList; |
|
|
|
} |
|
|
|
|
|
|
|
public static class GoodsTechnologyActionListBean { |
|
|
|
/** |
|
|
|
* 工序名称 |
|
|
|
*/ |
|
|
|
private String stepName; |
|
|
|
/** |
|
|
|
* 工序参数 |
|
|
|
*/ |
|
|
|
private String actionJson; |
|
|
|
/** |
|
|
|
* 子属性组合 |
|
|
|
*/ |
|
|
|
private String goodsAttributeId; |
|
|
|
private boolean isBatch; |
|
|
|
private String chnologyId; |
|
|
|
private String groupId; |
|
|
|
private int sort; |
|
|
|
private String goodsId; |
|
|
|
private String deviceId; |
|
|
|
private String warehousrTemplateId; |
|
|
|
|
|
|
|
public String getStepName() { |
|
|
|
return stepName; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStepName(String stepName) { |
|
|
|
this.stepName = stepName; |
|
|
|
} |
|
|
|
|
|
|
|
public String getActionJson() { |
|
|
|
return actionJson; |
|
|
|
} |
|
|
|
|
|
|
|
public void setActionJson(String actionJson) { |
|
|
|
this.actionJson = actionJson; |
|
|
|
} |
|
|
|
|
|
|
|
public String getGoodsAttributeId() { |
|
|
|
return goodsAttributeId; |
|
|
|
} |
|
|
|
|
|
|
|
public void setGoodsAttributeId(String goodsAttributeId) { |
|
|
|
this.goodsAttributeId = goodsAttributeId; |
|
|
|
} |
|
|
|
|
|
|
|
public boolean isIsBatch() { |
|
|
|
return isBatch; |
|
|
|
} |
|
|
|
|
|
|
|
public void setIsBatch(boolean isBatch) { |
|
|
|
this.isBatch = isBatch; |
|
|
|
} |
|
|
|
|
|
|
|
public String getChnologyId() { |
|
|
|
return chnologyId; |
|
|
|
} |
|
|
|
|
|
|
|
public void setChnologyId(String chnologyId) { |
|
|
|
this.chnologyId = chnologyId; |
|
|
|
} |
|
|
|
|
|
|
|
public String getGroupId() { |
|
|
|
return groupId; |
|
|
|
} |
|
|
|
|
|
|
|
public void setGroupId(String groupId) { |
|
|
|
this.groupId = groupId; |
|
|
|
} |
|
|
|
|
|
|
|
public int getSort() { |
|
|
|
return sort; |
|
|
|
} |
|
|
|
|
|
|
|
public void setSort(int sort) { |
|
|
|
this.sort = sort; |
|
|
|
} |
|
|
|
|
|
|
|
public String getGoodsId() { |
|
|
|
return goodsId; |
|
|
|
} |
|
|
|
|
|
|
|
public void setGoodsId(String goodsId) { |
|
|
|
this.goodsId = goodsId; |
|
|
|
} |
|
|
|
|
|
|
|
public String getDeviceId() { |
|
|
|
return deviceId; |
|
|
|
} |
|
|
|
|
|
|
|
public void setDeviceId(String deviceId) { |
|
|
|
this.deviceId = deviceId; |
|
|
|
} |
|
|
|
|
|
|
|
public String getWarehousrTemplateId() { |
|
|
|
return warehousrTemplateId; |
|
|
|
} |
|
|
|
|
|
|
|
public void setWarehousrTemplateId(String warehousrTemplateId) { |
|
|
|
this.warehousrTemplateId = warehousrTemplateId; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |