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; +}