| | |
| | | package com.java110.vo.api.resourceStore; |
| | | |
| | | import com.java110.dto.resourceStoreTimes.ResourceStoreTimesDto; |
| | | import com.java110.dto.resourceSupplier.ResourceSupplierDto; |
| | | |
| | | import java.io.Serializable; |
| | |
| | | private String miniStock; |
| | | private String parentRstId; |
| | | private String parentRstName; |
| | | //是否是固定物品 |
| | | private String isFixed; |
| | | private String isFixedName; |
| | | |
| | | private List<ResourceStoreTimesDto> times; |
| | | public String getResId() { |
| | | return resId; |
| | | } |
| | |
| | | public void setParentRstName(String parentRstName) { |
| | | this.parentRstName = parentRstName; |
| | | } |
| | | |
| | | public String getIsFixed() { |
| | | return isFixed; |
| | | } |
| | | |
| | | public void setIsFixed(String isFixed) { |
| | | this.isFixed = isFixed; |
| | | } |
| | | |
| | | public String getIsFixedName() { |
| | | return isFixedName; |
| | | } |
| | | |
| | | public void setIsFixedName(String isFixedName) { |
| | | this.isFixedName = isFixedName; |
| | | } |
| | | |
| | | public List<ResourceStoreTimesDto> getTimes() { |
| | | return times; |
| | | } |
| | | |
| | | public void setTimes(List<ResourceStoreTimesDto> times) { |
| | | this.times = times; |
| | | } |
| | | } |