From 011500b0342dec1c6b957f36bfb37fa78e7976da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=A9=AC=E4=B8=89=E7=82=AE?= <15856818120@163.com> Date: Thu, 15 Jan 2026 10:42:11 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E7=AE=A1=E7=90=86=E5=88=86?= =?UTF-8?q?=E6=9E=90=EF=BC=8C=E6=95=B4=E4=BD=93=E6=95=88=E8=83=BD=E5=88=86?= =?UTF-8?q?=E6=9E=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../entity/background/vo/SjProjectMassVo.java | 56 +++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 securitycontrol-commons/securitycontrol-commons-entity/src/main/java/com/securitycontrol/entity/background/vo/SjProjectMassVo.java diff --git a/securitycontrol-commons/securitycontrol-commons-entity/src/main/java/com/securitycontrol/entity/background/vo/SjProjectMassVo.java b/securitycontrol-commons/securitycontrol-commons-entity/src/main/java/com/securitycontrol/entity/background/vo/SjProjectMassVo.java new file mode 100644 index 0000000..a646312 --- /dev/null +++ b/securitycontrol-commons/securitycontrol-commons-entity/src/main/java/com/securitycontrol/entity/background/vo/SjProjectMassVo.java @@ -0,0 +1,56 @@ +package com.securitycontrol.entity.background.vo; + +import lombok.Data; + +/** + * @author 马三炮 + * @date 2026/1/14 + */ +@Data +public class SjProjectMassVo { + + /** + * 主键 + */ + private Integer id; + + /** + *班组名称 + */ + private String teamName; + + /** + *检测内容 + */ + private String contentInspection; + + /** + *检测日期 + */ + private String inspectionDate; + + /** + *检测结果 + */ + private String inspectionResults; + + /** + *质量检测报告 + */ + private String inspectionUrl; + + /** + *关键字 + */ + private String keyWord; + + /** + *开始时间 + */ + private String startDate; + + /** + *结束时间 + */ + private String endDate; +}