| | |
| | | package com.java110.vo.api.purchaseApply; |
| | | |
| | | import com.java110.dto.resource.ResourceStoreTimesDto; |
| | | |
| | | import java.util.List; |
| | | |
| | | //采购明细表 |
| | |
| | | private String originalStock; |
| | | private String supplierName; |
| | | private String shName; |
| | | private String shId; |
| | | private String unitCodeName; |
| | | private String miniUnitCodeName; |
| | | private String isFixed; |
| | | private String isFixedName; |
| | | private String consultPrice; |
| | | private String timesId; |
| | | |
| | | private List<ResourceStoreTimesDto> times; |
| | | |
| | | public String getApplyOrderId() { |
| | | return applyOrderId; |
| | |
| | | public void setIsFixedName(String isFixedName) { |
| | | this.isFixedName = isFixedName; |
| | | } |
| | | |
| | | public String getShId() { |
| | | return shId; |
| | | } |
| | | |
| | | public void setShId(String shId) { |
| | | this.shId = shId; |
| | | } |
| | | |
| | | public String getConsultPrice() { |
| | | return consultPrice; |
| | | } |
| | | |
| | | public void setConsultPrice(String consultPrice) { |
| | | this.consultPrice = consultPrice; |
| | | } |
| | | |
| | | public String getTimesId() { |
| | | return timesId; |
| | | } |
| | | |
| | | public void setTimesId(String timesId) { |
| | | this.timesId = timesId; |
| | | } |
| | | |
| | | public List<ResourceStoreTimesDto> getTimes() { |
| | | return times; |
| | | } |
| | | |
| | | public void setTimes(List<ResourceStoreTimesDto> times) { |
| | | this.times = times; |
| | | } |
| | | } |
| | | |
| | | |