| | |
| | | package com.nanometer.smartlab.entity; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonInclude; |
| | | import com.nanometer.smartlab.entity.enumtype.ArrivalStatus; |
| | | import com.nanometer.smartlab.entity.enumtype.RealStatus; |
| | | import com.nanometer.smartlab.entity.enumtype.StoreType; |
| | |
| | | import java.math.BigDecimal; |
| | | import java.sql.Timestamp; |
| | | |
| | | import static com.fasterxml.jackson.annotation.JsonInclude.Include.NON_NULL; |
| | | |
| | | /** |
| | | * Created by johnny on 17/11/23. |
| | | */ |
| | | @JsonInclude(NON_NULL) |
| | | public class OpeUseFlow implements Serializable { |
| | | |
| | | private String id; |
| | |
| | | private BigDecimal remainder; |
| | | private String place; |
| | | private StoreType storeType; |
| | | // 体积 |
| | | private BigDecimal volume; |
| | | |
| | | private SysReagent reagent; |
| | | private String userName; |
| | | private String articleNumber; |
| | | |
| | | |
| | | private String laboratoryName; |
| | | private String warehouseName; |
| | | |
| | | |
| | | private String warehouseContainerName; |
| | | private String laboratoryContainerName; |
| | | private String warehouseContainerCode; |
| | | private String laboratoryContainerCode; |
| | | |
| | | |
| | | private String operatestateName; |
| | | private String operateState; |
| | | |
| | | private String receiptNumber; |
| | | private String note; |
| | | //人员信息 |
| | | private String project; |
| | | private String phone; |
| | | private String department; |
| | | private Integer applyNum; |
| | | |
| | | |
| | | |
| | | |
| | | public String getWarehouseContainerCode() { |
| | |
| | | public void setStoreType(StoreType storeType) { |
| | | this.storeType = storeType; |
| | | } |
| | | |
| | | public String getReceiptNumber() { |
| | | return receiptNumber; |
| | | } |
| | | |
| | | public void setReceiptNumber(String receiptNumber) { |
| | | this.receiptNumber = receiptNumber; |
| | | } |
| | | |
| | | |
| | | |
| | | public Integer getApplyNum() { |
| | | return applyNum; |
| | | } |
| | | |
| | | public void setApplyNum(Integer applyNum) { |
| | | this.applyNum = applyNum; |
| | | } |
| | | |
| | | public String getProject() { |
| | | return project; |
| | | } |
| | | |
| | | public void setProject(String project) { |
| | | this.project = project; |
| | | } |
| | | |
| | | public String getDepartment() { |
| | | return department; |
| | | } |
| | | |
| | | public void setDepartment(String department) { |
| | | this.department = department; |
| | | } |
| | | |
| | | public String getPhone() { |
| | | return phone; |
| | | } |
| | | |
| | | public void setPhone(String phone) { |
| | | this.phone = phone; |
| | | } |
| | | |
| | | public String getNote() { |
| | | return note; |
| | | } |
| | | |
| | | public void setNote(String note) { |
| | | this.note = note; |
| | | } |
| | | |
| | | public BigDecimal getVolume() { |
| | | return volume; |
| | | } |
| | | |
| | | public void setVolume(BigDecimal volume) { |
| | | this.volume = volume; |
| | | } |
| | | } |