| | |
| | | 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 operatestateName; |
| | | private String operateState; |
| | | private String receiptNumber; |
| | | private String note; |
| | | //人员信息 |
| | | private String project; |
| | | private String 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; |
| | | } |
| | | } |