| | |
| | | //物资名称 |
| | | private String materialName; |
| | | |
| | | /** |
| | | * 是否是耗材(0是, 1否) |
| | | */ |
| | | private Byte consumable; |
| | | private String consumableName; |
| | | |
| | | public Long getSmId() { |
| | | return smId; |
| | | } |
| | |
| | | public void setMaterialName(String materialName) { |
| | | this.materialName = materialName; |
| | | } |
| | | |
| | | 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; |
| | | } |
| | | } |