54 lines
1.3 KiB
Plaintext
54 lines
1.3 KiB
Plaintext
package com.sercurityControl.proteam.domain;
|
|
|
|
import com.securityControl.common.core.constant.annotation.Excel;
|
|
import com.sercurityControl.proteam.domain.vo.TablePage;
|
|
import lombok.Data;
|
|
|
|
import java.security.PrivateKey;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 周风险实体类
|
|
*/
|
|
@Data
|
|
public class WeekRiskEntity extends TablePage {
|
|
|
|
|
|
@Excel(name = "建管单位")
|
|
private String buildUnit;//
|
|
@Excel(name = "工程名称")
|
|
private String projectName;//工程名称
|
|
@Excel(name = "工作内容")
|
|
private String workContent;//工作内容
|
|
@Excel(name = "开始时间")
|
|
private String startDate;//开始时间
|
|
@Excel(name = "结束时间")
|
|
private String endDate;//结束时间
|
|
@Excel(name = "班组名称")
|
|
private String teamName;//班組名称
|
|
private String buildNo;//标段编码
|
|
@Excel(name = "风险等级")
|
|
private String riskLevel;//风险等级
|
|
|
|
@Excel(name = "工作名称")
|
|
private String workName;//工作名称
|
|
@Excel(name = "工序")
|
|
private String workGx;//工序
|
|
@Excel(name = "工作类型")
|
|
private String workType;//工作类型
|
|
/**
|
|
* 施工时间
|
|
*/
|
|
private String sgTime;
|
|
|
|
private String keyWord;
|
|
|
|
private String bidCode;//标段编码
|
|
|
|
private List<String> orgList;//组织机构集合
|
|
|
|
private List<String> proList;//工程集合
|
|
|
|
|
|
}
|