| | |
| | | package com.nanometer.smartlab.entity; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonInclude; |
| | | import com.nanometer.smartlab.entity.enumtype.DangerousFlag; |
| | | import com.nanometer.smartlab.entity.enumtype.ValidFlag; |
| | | import sun.awt.SunHints; |
| | |
| | | import java.sql.Timestamp; |
| | | import java.util.Vector; |
| | | |
| | | import static com.fasterxml.jackson.annotation.JsonInclude.Include.NON_NULL; |
| | | |
| | | /** |
| | | * Created by johnny on 17/11/23. |
| | | */ |
| | | @JsonInclude(NON_NULL) |
| | | public class SysReagent implements Serializable { |
| | | |
| | | private String id; |
| | |
| | | private Integer actualnum; |
| | | |
| | | private ValidFlag supplierFlag; |
| | | |
| | | |
| | | private BigDecimal density; |
| | | |
| | | |
| | | public void change(){ |
| | |
| | | public void setSupplierFlag(ValidFlag supplierFlag) { |
| | | this.supplierFlag = supplierFlag; |
| | | } |
| | | |
| | | public BigDecimal getDensity() { |
| | | return density; |
| | | } |
| | | |
| | | public void setDensity(BigDecimal density) { |
| | | this.density = density; |
| | | } |
| | | } |