| | |
| | | |
| | | 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; |
| | |
| | | |
| | | 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; |
| | | } |