|
@@ -20,6 +20,8 @@ import org.springblade.business.entity.TrialSystemDocking;
|
|
|
import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
|
+import javax.validation.constraints.NotNull;
|
|
|
+
|
|
|
/**
|
|
|
* 德飞试验系统对接表视图实体类
|
|
|
*
|
|
@@ -30,6 +32,8 @@ import lombok.EqualsAndHashCode;
|
|
|
public class TrialSystemDockingVO {
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
+ private Long id;
|
|
|
+
|
|
|
/**
|
|
|
* 项目Id
|
|
|
*/
|
|
@@ -42,16 +46,39 @@ public class TrialSystemDockingVO {
|
|
|
* 报告编号
|
|
|
*/
|
|
|
private String reportNumber;
|
|
|
-
|
|
|
+ /**
|
|
|
+ * 单位名称
|
|
|
+ */
|
|
|
+ private String unitName;
|
|
|
/**
|
|
|
* 所属检测分类id
|
|
|
*/
|
|
|
- private Long classificationId;
|
|
|
|
|
|
+ private Long classificationId;
|
|
|
+ /**
|
|
|
+ * 规格型号
|
|
|
+ */
|
|
|
+ private String specification;
|
|
|
/**
|
|
|
* 报告类型(1原材检测报告,2现场检测报告,3外委报告,4第三方检测报告)
|
|
|
*/
|
|
|
private Integer reportType;
|
|
|
+ /**
|
|
|
+ * 工程用途及部位
|
|
|
+ */
|
|
|
+ private String purposeLocation;
|
|
|
+ /**
|
|
|
+ * 报告日期(20250822)
|
|
|
+ */
|
|
|
+ private String reportDate;
|
|
|
+ /**
|
|
|
+ * 原文件地址
|
|
|
+ */
|
|
|
+ private String fileUrl;
|
|
|
+ /**
|
|
|
+ * 责任者
|
|
|
+ */
|
|
|
+ private String personInCharge;
|
|
|
|
|
|
|
|
|
}
|