项目管理分析,整体效能分析

This commit is contained in:
马三炮 2026-01-15 10:42:11 +08:00
parent 789c773315
commit 011500b034
1 changed files with 56 additions and 0 deletions

View File

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