| | |
| | | package com.jcdm.main.da.tileMatchCollection.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_collection |
| | |
| | | * @author yyt |
| | | * @date 2024-06-06 |
| | | */ |
| | | public class DaTileMatchCollection extends BaseEntity |
| | | @Data |
| | | public class DaTileMatchCollection |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** id */ |
| | | private Long id; |
| | |
| | | @Excel(name = "条码") |
| | | private String paramValue; |
| | | |
| | | public void setId(Long id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | /** 创建用户 */ |
| | | private String createUser; |
| | | |
| | | public Long getId() |
| | | { |
| | | return id; |
| | | } |
| | | public void setSfcCode(String sfcCode) |
| | | { |
| | | this.sfcCode = sfcCode; |
| | | } |
| | | /** 更改用户 */ |
| | | private String updateUser; |
| | | |
| | | public String getSfcCode() |
| | | { |
| | | return sfcCode; |
| | | } |
| | | public void setParamCode(String paramCode) |
| | | { |
| | | this.paramCode = paramCode; |
| | | } |
| | | /** 创建时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date createTime; |
| | | |
| | | public String getParamCode() |
| | | { |
| | | return paramCode; |
| | | } |
| | | public void setParamName(String paramName) |
| | | { |
| | | this.paramName = paramName; |
| | | } |
| | | |
| | | public String getParamName() |
| | | { |
| | | return paramName; |
| | | } |
| | | public void setRemarks(String remarks) |
| | | { |
| | | this.remarks = remarks; |
| | | } |
| | | |
| | | public String getRemarks() |
| | | { |
| | | return remarks; |
| | | } |
| | | public void setLocationCode(String locationCode) |
| | | { |
| | | this.locationCode = locationCode; |
| | | } |
| | | |
| | | public String getLocationCode() |
| | | { |
| | | return locationCode; |
| | | } |
| | | |
| | | public void setParamValue(String paramValue) |
| | | { |
| | | this.paramValue = paramValue; |
| | | } |
| | | |
| | | public String getParamValue() |
| | | { |
| | | return paramValue; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("id", getId()) |
| | | .append("sfcCode", getSfcCode()) |
| | | .append("paramCode", getParamCode()) |
| | | .append("paramName", getParamName()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("remarks", getRemarks()) |
| | | .append("locationCode", getLocationCode()) |
| | | .append("paramValue", getParamValue()) |
| | | .toString(); |
| | | } |
| | | /** 更新时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date updateTime; |
| | | } |