| | |
| | | |
| | | import com.jcdm.common.annotation.Excel; |
| | | import com.jcdm.common.core.domain.BaseEntity; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | |
| | | import java.util.Date; |
| | | import java.util.Objects; |
| | | |
| | | /** |
| | | * 设备产品过程参数采集对象 da_param_collection |
| | |
| | | * @author yyt |
| | | * @date 2023-12-13 |
| | | */ |
| | | @Data |
| | | public class DaParamCollection extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | @Excel(name = "类型") |
| | | private String type; |
| | | |
| | | public void setId(Long id) |
| | | private String model; |
| | | |
| | | private String productBarcode; |
| | | |
| | | private String tightenTheArray; |
| | | |
| | | private String productModel; |
| | | |
| | | public String getTightenTheArray() { |
| | | return tightenTheArray; |
| | | } |
| | | |
| | | public void setTightenTheArray(String tightenTheArray) { |
| | | this.tightenTheArray = tightenTheArray; |
| | | } |
| | | |
| | | public String getProductBarcode() { |
| | | return productBarcode; |
| | | } |
| | | |
| | | public void setProductBarcode(String productBarcode) { |
| | | this.productBarcode = productBarcode; |
| | | } |
| | | |
| | | public String getModel() { |
| | | return model; |
| | | } |
| | | |
| | | public void setModel(String model) { |
| | | this.model = model; |
| | | } |
| | | |
| | | public void setId(Long id) |
| | | { |
| | | this.id = id; |
| | | } |