package com.ruoyi.project.dc.thirdPartyTesting.domain;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import com.ruoyi.framework.web.domain.BaseEntity;
|
import java.util.Date;
|
|
/**
|
* 第三方检测对象 dc_third_party_testing
|
*
|
* @author wm
|
* @date 2020-12-07
|
*/
|
public class ThirdPartyTesting extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** id */
|
private Long testingId;
|
|
/** 创建人id */
|
private Long createUserId;
|
|
/** 更新者id */
|
private Long updateUserId;
|
|
/** 检测名称 */
|
private String testingName;
|
|
/** 检测时间 */
|
@Excel(name = "检测时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date testingDetectionTime;
|
|
/** 检测结论 */
|
@Excel(name = "检测结论")
|
private String testingTestConclusion;
|
|
/** 所属文件 */
|
@Excel(name = "所属文件")
|
private String testingOwnedFile;
|
|
/** 所属图片 */
|
@Excel(name = "所属图片")
|
private String testingOwnedPicture;
|
|
/** 报告有效期 */
|
@Excel(name = "报告有效期", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date testingReportValidityPeriod;
|
|
//公司id
|
private Long companyId;
|
|
public String getTestingName() {
|
return testingName;
|
}
|
|
public void setTestingName(String testingName) {
|
this.testingName = testingName;
|
}
|
|
public Long getCompanyId() {
|
return companyId;
|
}
|
|
public void setCompanyId(Long companyId) {
|
this.companyId = companyId;
|
}
|
|
public void setTestingId(Long testingId)
|
{
|
this.testingId = testingId;
|
}
|
|
public Long getTestingId()
|
{
|
return testingId;
|
}
|
public void setCreateUserId(Long createUserId)
|
{
|
this.createUserId = createUserId;
|
}
|
|
public Long getCreateUserId()
|
{
|
return createUserId;
|
}
|
public void setUpdateUserId(Long updateUserId)
|
{
|
this.updateUserId = updateUserId;
|
}
|
|
public Long getUpdateUserId()
|
{
|
return updateUserId;
|
}
|
public void setTestingDetectionTime(Date testingDetectionTime)
|
{
|
this.testingDetectionTime = testingDetectionTime;
|
}
|
|
public Date getTestingDetectionTime()
|
{
|
return testingDetectionTime;
|
}
|
public void setTestingTestConclusion(String testingTestConclusion)
|
{
|
this.testingTestConclusion = testingTestConclusion;
|
}
|
|
public String getTestingTestConclusion()
|
{
|
return testingTestConclusion;
|
}
|
public void setTestingOwnedFile(String testingOwnedFile)
|
{
|
this.testingOwnedFile = testingOwnedFile;
|
}
|
|
public String getTestingOwnedFile()
|
{
|
return testingOwnedFile;
|
}
|
public void setTestingOwnedPicture(String testingOwnedPicture)
|
{
|
this.testingOwnedPicture = testingOwnedPicture;
|
}
|
|
public String getTestingOwnedPicture()
|
{
|
return testingOwnedPicture;
|
}
|
public void setTestingReportValidityPeriod(Date testingReportValidityPeriod)
|
{
|
this.testingReportValidityPeriod = testingReportValidityPeriod;
|
}
|
|
public Date getTestingReportValidityPeriod()
|
{
|
return testingReportValidityPeriod;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("testingId", getTestingId())
|
.append("createBy", getCreateBy())
|
.append("createUserId", getCreateUserId())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateUserId", getUpdateUserId())
|
.append("updateTime", getUpdateTime())
|
.append("remark", getRemark())
|
.append("testingDetectionTime", getTestingDetectionTime())
|
.append("testingTestConclusion", getTestingTestConclusion())
|
.append("testingOwnedFile", getTestingOwnedFile())
|
.append("testingOwnedPicture", getTestingOwnedPicture())
|
.append("testingReportValidityPeriod", getTestingReportValidityPeriod())
|
.toString();
|
}
|
}
|