| | |
| | | package com.gkhy.safePlatform.equipment.model.dto.resp; |
| | | |
| | | import java.util.List; |
| | | |
| | | public class SafeMaterialClassifyDto { |
| | | private Long id; |
| | | private String materialClassifyName; |
| | | |
| | | private Long parentId; |
| | | |
| | | /** |
| | | * 是否是耗材(0是,1否) |
| | | */ |
| | | private Byte consumable; |
| | | |
| | | private String consumableName; |
| | | |
| | | private List<SafeMaterialClassifyDto> childList; |
| | | |
| | | public Long getParentId() { |
| | | return parentId; |
| | | } |
| | | |
| | | public void setParentId(Long parentId) { |
| | | this.parentId = parentId; |
| | | } |
| | | |
| | | public Long getId() { |
| | | return id; |
| | |
| | | public void setMaterialClassifyName(String materialClassifyName) { |
| | | this.materialClassifyName = materialClassifyName; |
| | | } |
| | | |
| | | public List<SafeMaterialClassifyDto> getChildList() { |
| | | return childList; |
| | | } |
| | | |
| | | public void setChildList(List<SafeMaterialClassifyDto> childList) { |
| | | this.childList = childList; |
| | | } |
| | | |
| | | public Byte getConsumable() { |
| | | return consumable; |
| | | } |
| | | |
| | | public void setConsumable(Byte consumable) { |
| | | this.consumable = consumable; |
| | | } |
| | | |
| | | public String getConsumableName() { |
| | | return consumableName; |
| | | } |
| | | |
| | | public void setConsumableName(String consumableName) { |
| | | this.consumableName = consumableName; |
| | | } |
| | | } |