| | |
| | | package com.billion.main.da.domain; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.billion.common.annotation.Excel; |
| | | 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.billion.common.annotation.Excel; |
| | | import com.billion.main.common.BaseEntity; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 拧紧采集对象 da_tighten_collection |
| | | * |
| | | * @author Billion-Yi |
| | | * @date 2024-11-22 |
| | | * @author Yi |
| | | * @date 2025-05-06 |
| | | */ |
| | | @Data |
| | | public class DaTightenCollection extends BaseEntity |
| | | public class DaTightenCollection |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | |
| | | @Excel(name = "采集时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private Date collectTime; |
| | | |
| | | @TableField(exist = false) |
| | | private String[] timeQuery; |
| | | public void setId(Long id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | |
| | | @TableField(exist = false) |
| | | private String startTime; |
| | | public Long getId() |
| | | { |
| | | return id; |
| | | } |
| | | public void setSfcCode(String sfcCode) |
| | | { |
| | | this.sfcCode = sfcCode; |
| | | } |
| | | |
| | | @TableField(exist = false) |
| | | private String stopTime; |
| | | public String getSfcCode() |
| | | { |
| | | return sfcCode; |
| | | } |
| | | public void setLocationCode(String locationCode) |
| | | { |
| | | this.locationCode = locationCode; |
| | | } |
| | | |
| | | public String getLocationCode() |
| | | { |
| | | return locationCode; |
| | | } |
| | | public void setParamSetCode(String paramSetCode) |
| | | { |
| | | this.paramSetCode = paramSetCode; |
| | | } |
| | | |
| | | public String getParamSetCode() |
| | | { |
| | | return paramSetCode; |
| | | } |
| | | public void setParamSetName(String paramSetName) |
| | | { |
| | | this.paramSetName = paramSetName; |
| | | } |
| | | |
| | | public String getParamSetName() |
| | | { |
| | | return paramSetName; |
| | | } |
| | | public void setTorque(String torque) |
| | | { |
| | | this.torque = torque; |
| | | } |
| | | |
| | | public String getTorque() |
| | | { |
| | | return torque; |
| | | } |
| | | public void setTorqueStatus(String torqueStatus) |
| | | { |
| | | this.torqueStatus = torqueStatus; |
| | | } |
| | | |
| | | public String getTorqueStatus() |
| | | { |
| | | return torqueStatus; |
| | | } |
| | | public void setAngle(String angle) |
| | | { |
| | | this.angle = angle; |
| | | } |
| | | |
| | | public String getAngle() |
| | | { |
| | | return angle; |
| | | } |
| | | public void setAngleStatus(String angleStatus) |
| | | { |
| | | this.angleStatus = angleStatus; |
| | | } |
| | | |
| | | public String getAngleStatus() |
| | | { |
| | | return angleStatus; |
| | | } |
| | | |
| | | public Date getCollectTime() { |
| | | return collectTime; |
| | | } |
| | | |
| | | public void setCollectTime(Date collectTime) { |
| | | this.collectTime = collectTime; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("id", getId()) |
| | | .append("sfcCode", getSfcCode()) |
| | | .append("locationCode", getLocationCode()) |
| | | .append("paramSetCode", getParamSetCode()) |
| | | .append("paramSetName", getParamSetName()) |
| | | .append("torque", getTorque()) |
| | | .append("torqueStatus", getTorqueStatus()) |
| | | .append("angle", getAngle()) |
| | | .append("angleStatus", getAngleStatus()) |
| | | .append("collectTime", getCollectTime()) |
| | | .toString(); |
| | | } |
| | | } |