项目管理分析,整体效能分析
This commit is contained in:
parent
789c773315
commit
011500b034
|
|
@ -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;
|
||||
}
|
||||
Loading…
Reference in New Issue