| | |
| | | package com.jcdm.main.da.tileMatchRules.domain; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.jcdm.common.annotation.Excel; |
| | | import com.jcdm.common.core.domain.BaseEntity; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 配瓦规则对象 da_tile_match_rules |
| | |
| | | * @author jiang |
| | | * @date 2024-01-24 |
| | | */ |
| | | public class DaTileMatchRules extends BaseEntity |
| | | @Data |
| | | public class DaTileMatchRules |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** 主键id */ |
| | | private Long id; |
| | |
| | | |
| | | /** 轴参数数位置 */ |
| | | @Excel(name = "轴参数数位置") |
| | | private Long axisParameterNoPosition; |
| | | private Integer axisParameterNoPosition; |
| | | |
| | | /** 颈参数数位置 */ |
| | | @Excel(name = "颈参数数位置") |
| | | private Long neckParameterPosition; |
| | | private Integer neckParameterPosition; |
| | | |
| | | /** 轴值 */ |
| | | @Excel(name = "轴值") |
| | |
| | | @Excel(name = "状态", readConverterExp = "1=合格、2不合格") |
| | | private String state; |
| | | |
| | | public void setId(Long id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Long getId() |
| | | { |
| | | return id; |
| | | } |
| | | public void setProductSeries(String productSeries) |
| | | { |
| | | this.productSeries = productSeries; |
| | | } |
| | | /** 创建时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date createTime; |
| | | |
| | | public String getProductSeries() |
| | | { |
| | | return productSeries; |
| | | } |
| | | public void setScanObject1(String scanObject1) |
| | | { |
| | | this.scanObject1 = scanObject1; |
| | | } |
| | | |
| | | public String getScanObject1() |
| | | { |
| | | return scanObject1; |
| | | } |
| | | public void setScanObject2(String scanObject2) |
| | | { |
| | | this.scanObject2 = scanObject2; |
| | | } |
| | | |
| | | public String getScanObject2() |
| | | { |
| | | return scanObject2; |
| | | } |
| | | public void setAxisName(String axisName) |
| | | { |
| | | this.axisName = axisName; |
| | | } |
| | | |
| | | public String getAxisName() |
| | | { |
| | | return axisName; |
| | | } |
| | | public void setNeckName(String neckName) |
| | | { |
| | | this.neckName = neckName; |
| | | } |
| | | |
| | | public String getNeckName() |
| | | { |
| | | return neckName; |
| | | } |
| | | public void setTileName(String tileName) |
| | | { |
| | | this.tileName = tileName; |
| | | } |
| | | |
| | | public String getTileName() |
| | | { |
| | | return tileName; |
| | | } |
| | | public void setAxisParameterNoPosition(Long axisParameterNoPosition) |
| | | { |
| | | this.axisParameterNoPosition = axisParameterNoPosition; |
| | | } |
| | | |
| | | public Long getAxisParameterNoPosition() |
| | | { |
| | | return axisParameterNoPosition; |
| | | } |
| | | public void setNeckParameterPosition(Long neckParameterPosition) |
| | | { |
| | | this.neckParameterPosition = neckParameterPosition; |
| | | } |
| | | |
| | | public Long getNeckParameterPosition() |
| | | { |
| | | return neckParameterPosition; |
| | | } |
| | | public void setAxisValue(String axisValue) |
| | | { |
| | | this.axisValue = axisValue; |
| | | } |
| | | |
| | | public String getAxisValue() |
| | | { |
| | | return axisValue; |
| | | } |
| | | public void setNeckValue(String neckValue) |
| | | { |
| | | this.neckValue = neckValue; |
| | | } |
| | | |
| | | public String getNeckValue() |
| | | { |
| | | return neckValue; |
| | | } |
| | | public void setTileColor(String tileColor) |
| | | { |
| | | this.tileColor = tileColor; |
| | | } |
| | | |
| | | public String getTileColor() |
| | | { |
| | | return tileColor; |
| | | } |
| | | public void setCreateUser(String createUser) |
| | | { |
| | | this.createUser = createUser; |
| | | } |
| | | |
| | | public String getCreateUser() |
| | | { |
| | | return createUser; |
| | | } |
| | | public void setUpdateUser(String updateUser) |
| | | { |
| | | this.updateUser = updateUser; |
| | | } |
| | | |
| | | public String getUpdateUser() |
| | | { |
| | | return updateUser; |
| | | } |
| | | public void setState(String state) |
| | | { |
| | | this.state = state; |
| | | } |
| | | |
| | | public String getState() |
| | | { |
| | | return state; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("id", getId()) |
| | | .append("productSeries", getProductSeries()) |
| | | .append("scanObject1", getScanObject1()) |
| | | .append("scanObject2", getScanObject2()) |
| | | .append("axisName", getAxisName()) |
| | | .append("neckName", getNeckName()) |
| | | .append("tileName", getTileName()) |
| | | .append("axisParameterNoPosition", getAxisParameterNoPosition()) |
| | | .append("neckParameterPosition", getNeckParameterPosition()) |
| | | .append("axisValue", getAxisValue()) |
| | | .append("neckValue", getNeckValue()) |
| | | .append("tileColor", getTileColor()) |
| | | .append("createUser", getCreateUser()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("updateUser", getUpdateUser()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("state", getState()) |
| | | .toString(); |
| | | } |
| | | /** 更新时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date updateTime; |
| | | } |