| | |
| | | package com.nanometer.smartlab.entity.dto; |
| | | |
| | | |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | |
| | | import java.util.*; |
| | | |
| | | @Getter |
| | | @Setter |
| | | public class ReagentReceivingDto { |
| | | |
| | | //试剂编码 |
| | | private List<String> reagentCode; |
| | | //申领人id |
| | | private String applyUserId; |
| | | private Long applyUserId; |
| | | //实验室id |
| | | private String labId; |
| | | private Long labId; |
| | | //实验室下货柜id |
| | | private String labContainerId; |
| | | private Long labContainerId; |
| | | |
| | | |
| | | public List<String> getReagentCode() { |
| | | return reagentCode; |
| | | } |
| | | |
| | | public void setReagentCode(List<String> reagentCode) { |
| | | this.reagentCode = reagentCode; |
| | | } |
| | | |
| | | public String getApplyUserId() { |
| | | return applyUserId; |
| | | } |
| | | |
| | | public void setApplyUserId(String applyUserId) { |
| | | this.applyUserId = applyUserId; |
| | | } |
| | | |
| | | public String getLabId() { |
| | | return labId; |
| | | } |
| | | |
| | | public void setLabId(String labId) { |
| | | this.labId = labId; |
| | | } |
| | | |
| | | public String getLabContainerId() { |
| | | return labContainerId; |
| | | } |
| | | |
| | | public void setLabContainerId(String labContainerId) { |
| | | this.labContainerId = labContainerId; |
| | | } |
| | | } |